I have managed to narrow my number search down and display the results. What i want to do is display the results in number order. I know I am nearly there, but can someone please help. Here is my script that outputs the numbers.
<?
include("connect_info.php");
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM price WHERE actual_price BETWEEN '$min_price' AND '$max_price' ORDER BY min_price DESC";
$result=mysql_query($query);
$num=mysql_numrows($result);
mysql_close();
$i=0;
while ($i < $num) {
$actual_price=mysql_result($result,$i,"actual_price");
?>
<P>Price <? echo"$actual_price";?><BR>
<?
++$i;
}