Jump to content

Recommended Posts

I use the old code below to fetch information from the database...

 

$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("my_db", $con);

$result = mysql_query("SELECT * FROM person
WHERE FirstName='Peter'");

while($row = mysql_fetch_array($result))
  {
  echo $row['FirstName'] . " " . $row['LastName'];
  echo "<br />";
  }

 

Well, how can I return a row (with LIMIT 1) with upload_votes AT LEAST 3, and with the HIGHEST upload_rating of all the rows in the database table?

 

Thanks for any help.

Link to comment
https://forums.phpfreaks.com/topic/47054-find-the-highest-number-in-table/
Share on other sites

Haven't a clue since I have no idea what the database/table structure is. All we know your post is that you have a table named "person" with columns firstname and lastname. Those with telepathic abilities (like MadTechie) may be able to help :D

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.