Ive written the code to get the values i need:
Code: Select all
$firstquery = "SELECT this
FROM thatTable" or die ("Unable to...");
$result = mysql_query($firstquery, $dblink);
$num=mysql_numrows($result);
$i=0;
while ($i < $num) {
$values = mysql_result($result,$i,"valuesiwant");
$i++;
}
mysql_close();Please help!
Thanks