Jump to content

alex10455

Members
  • Posts

    2
  • Joined

  • Last visited

alex10455's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. yeyeye I know but if i try to put codes there in the echo i get a syntax error I dunno where to put it
  2. Okay I got a website as you can see here.. http://rangersatwar.comuv.com/beta/members.php But I want to change the font color's to red Here is the code echo "<table border='1'>";echo "<tr> <th>Number</th> <th>Name</th> <th>Custom Title</th> <th>Real Name</th> </tr>";// keeps getting the next row until there are no more to getwhile($row = mysql_fetch_array( $rs )) {// Print out the contents of each row into a tableecho "<tr><td>"; echo $row['id_member'];echo "</td><td>"; echo $row['member_name'];echo "</td><td>"; echo(strlen($row['usertitle']) > 0 ? $row['usertitle'] : " ");echo "</td><td>"; echo $row['real_name'];echo "</td></tr>";} echo "</table>";?>
×
×
  • Create New...