PHP detmine numbers in between two numbers then query
- by Joshua Anderson
This should be simple but I can't figure it out
<?php
$testid = 240;
$curid = 251;
$cal = $curid - $testid;
echo $cal;
?>
I want to determine the numbers in between two other numbers so for this example it detects there are 11 numbers in between the $testid and $curid, but i dont need it to do that.
I need it to literally figure the numbers in between $curid - $testid which in this example would be 241, 242, 243... all the way to 251 then i need to create a loop with those numbers and do a query below with each one
$cal = $curid - $testid;
mysql_query("SELECT * FROM wall WHERE id='".$cal."'")
// and for each number mysql should out put each data field with those numbers.
Thanks again, love you guys.