here is my code:
<?php
$result = mysql_query("select * from manage order by id desc");
while ($row = mysql_fetch_array($result))
{
echo "<table width=\"400\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
echo "<tr>";
echo "<td>";
echo "<a href=\"http://";
echo $row["url"];
echo "\">";
echo $row["client"];
echo "</a></td><td>";
echo "<a href=\"mailto:";
echo $row["email"];
echo "/">";
echo $row["email"];
echo "</a></td><td>";
echo "You are being looked after by: ";
echo "<a href=\"mailto:";
echo $row["brother"];
echo "@macbros.com\">;
echo $row["brother"];
echo "</a></td></tr></table>";
}
?>
I know the connection is fine but here is the error I get:
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in /users/macbros/domains/macbros.com/html/cm/index.php on line 38
and just to make things easier for you here are the numbers:
35 echo $row["client"];
36 echo "</a></td><td>";
37 echo "<a href=\"mailto:";
38 echo $row["email"];