PHP MYSQL Exmaples
Posted: Thu Jun 19, 2008 2:03 am
hi there,
Please visite the for php mysql examples.
see the php mysql link in page.
Please visite the for php mysql examples.
see the php mysql link in page.
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<td><input name="password" type="text" id="password"></td>Code: Select all
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
# could just be
while($row = mysql_fetch_assoc($result))Code: Select all
while(list($name,$subject,$message)= mysql_fetch_row($result))
{
echo "Name :$name <br>" .
"Subject : $subject <br>" .
"Message : $row <br><br>";
}Code: Select all
while(list($name,$subject,$message)= mysql_fetch_row($result))
{
echo "Name :$name <br>" .
"Subject : $subject <br>" .
"Message : $message <br><br>";
}