RTS Posted August 24, 2006 Share Posted August 24, 2006 I am having a problem retreiving data from my mysql database. cann someone tell me what might be wrong? heres my code [code=php:0]<html><body bgcolor="336699"><?php$con = mysql_connect("localhost","ZackBabtkis","");if (!$con) { die('Could not connect: ' . mysql_error()); }mysql_select_db("test", $con);$result = mysql_query("SELECT about FROM users WHERE username = Zack");while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . echo $row['about'] . "</td>"; echo "</tr>"; }echo "</table>";mysql_close($con);?></body></html>[/code] Link to comment https://forums.phpfreaks.com/topic/18492-mysql-retrieving-data/ Share on other sites More sharing options...
ItsWesYo Posted August 24, 2006 Share Posted August 24, 2006 [code]$con = mysql_connect("localhost","ZackBabtkis","");[/code]Wouldn't you need -something- on the last quotations? =) Link to comment https://forums.phpfreaks.com/topic/18492-mysql-retrieving-data/#findComment-79655 Share on other sites More sharing options...
AndyB Posted August 24, 2006 Share Posted August 24, 2006 [quote author=RTS link=topic=105425.msg421179#msg421179 date=1156387124]cann someone tell me what might be wrong? [/quote]Why not explain what you see, what you don't see, what you would like to happen, what error messages (if any) you get, etc. .... and try where username = 'Zack' Link to comment https://forums.phpfreaks.com/topic/18492-mysql-retrieving-data/#findComment-79662 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.