Announcement

Collapse
No announcement yet.

I need some help please.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • I need some help please.

    Hi.
    I need a little help.Please take a look at this code.
    <?php
    mysql_pconnect("","","");
    mysql_select_db("");
    $query = "SELECT* FROM submit WHERE loginid='$loginid' LIMIT 1";
    $result = mysql_query($query);
    while($row = mysql_fetch_array($result, MYSQL_ASSOC))
    {
    echo "Your answer:";
    echo " {$row['F']}";
    }
    ?>
    What I want to do is change the color of the variable 'F',perhaps to red in order to stand out.How do I accomplish that?

  • #2
    Re: I need some help please.

    you will normally have a file called style.css which comes with the script. This file would dictate such things as background color, border color, margin padding etc etc. Somewhere within this file you should be able to find the value 'F' and change it's color.

    HTH
    Arcade Ninja - Free Flash Arcade
    FreeGadget4me.Com - Learn how to get free gadgets delivered direct to your door for free

    Comment

    Working...
    X