Jump to content

PHP question with database


bind199

Recommended Posts

You are most likely looking for something like this.

$query = mysql_query "SELECT stuff FROM table WHERE something='Value'";
while ($row = mysql_fetch_array($query)) {
$row['YourTableName'];
}

 

You will have to add some echos and your own table info.

 

There are lots of tips on this if you do some google searching.

 

Brett

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.