This sql query is good but I'm having trouble echoing the results with
php (no data echoed). Suggestions?
*************
$open_C = 'select * '
. ' from questions , users '
. ' where users . username = "X" LIMIT 0, 30 ';
// Fetch each row of the results into an array $q_row
while ($q_row = @mysql_fetch_ar ray($open_C))
{
echo "ID:\t{$q_r ow['question']}\n";
}
*************
Thank you.
php (no data echoed). Suggestions?
*************
$open_C = 'select * '
. ' from questions , users '
. ' where users . username = "X" LIMIT 0, 30 ';
// Fetch each row of the results into an array $q_row
while ($q_row = @mysql_fetch_ar ray($open_C))
{
echo "ID:\t{$q_r ow['question']}\n";
}
*************
Thank you.
Comment