View Single Post
Old 27-04-2004, 11:51   #1 (permalink)
deliben
Registered User
 
Join Date: Apr 2004
Posts: 7
Unexpected T_STRING !!!

1: if (mysql_num_rows($result) > 0)
2: {
3: echo '<p align="center">';
4: echo 'Select a customer:<br/>';
5: while ($row =mysql_fetch_assoc($result)):
6:
7: echo("<go href=\"detail.php?".SID."\">".$row ['fname']." ".$row['lname']." method="post">");
8: echo("<postfield name="rid" value=".$row['ID']."/>");
9: echo("</go>")
10: endwhile;

}

Hello ,

I am working with PHP and WML and I get to line 7: always an error called unexpected T_STRING what is wrong there I can not recognize it can you please help me out ?
  Reply With Quote