Jump to content

Mysql retrieving data


RTS

Recommended Posts

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

[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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.