Jump to content

Recommended Posts

I am not sure if this is to do with the "SELECT" query but its only returning 1 result from the database. What have i done wrong? lol

 

$get_horse = mysql_query("SELECT * FROM hracing ORDER BY id");

$horses = mysql_fetch_array($get_horse);

echo"<br><Br>";
  echo "<table width=100%>";
                echo "<tr>";
                echo "<td width=30%><b>Horse</b></td>";
                echo "<td width=30%><b>Odds</b></td>";
                echo "<td width=30%><b>Bet Cost</b></td>"; 
                echo "<td width=30%><b>Bet</b></td>";       
                echo "</tr>";



echo "<td>$horses[name]</td>";
echo "<td>$horses[odds]</td>";
echo "<td>$horses[cost]</td>";
echo "<td><a href=hracing.php?action=$horses[name]>Bet</a></td>";
echo "</table>";
include("bottom.php");

 

Thanks for your time

Link to comment
https://forums.phpfreaks.com/topic/59970-solved-problem-with-select/
Share on other sites

mysql_fetch_array() only selects ONE record at a time from a query result. You need to create a loop to grap each record in order:

 

<?php

echo"<br><Br>";
echo "<table width=100%>";

echo "<tr>";
echo "<td width=30%><b>Horse</b></td>";
echo "<td width=30%><b>Odds</b></td>";
echo "<td width=30%><b>Bet Cost</b></td>"; 
echo "<td width=30%><b>Bet</b></td>";       
echo "</tr>";

$get_horse = mysql_query("SELECT * FROM hracing ORDER BY id");

while ($horses = mysql_fetch_array($get_horse)) {

   echo "<tr>";
   echo "<td>$horses[name]</td>";
   echo "<td>$horses[odds]</td>";
   echo "<td>$horses[cost]</td>";
   echo "<td><a href=hracing.php?action=$horses[name]>Bet</a></td>";
   echo "</tr>";

}

echo "</table>";
include("bottom.php");

?>

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.