Jump to content

[SOLVED] right way to read data from a mysql database ?


webmazter

Recommended Posts

is this the right way to read data from a mysql database with php.

if so i get no results echoed.

mysql_select_db("fishdbs_fishdb", $con);

 

$result = mysql_query("SELECT * FROM fish");

?>

<p><?= $echo['scientificname']; ?>

 

</body>

</html>

Link to comment
Share on other sites

$result is just a mysql resource. It holds the data. usually you'll loop through the array and pull out any data. for example:

 

<?php
$sql = "SELECT * FROM table"; // the query
$result = mysql_query($sql) OR DIE (mysql_error()); // run the query to return the data in an array
if (mysql_num_rows($result) > 0) // if we got some data, move on
{
while ($r = mysql_fetch_array($result)) // loop though each element
{
	$name = $r['name']; // pull out a name
	$date = $r['date']; // pull out a date
	echo "<p>Name: {$name}<br />Date: {$date}</p>"; // this gets echoed once for each entry returned
}
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.