Jump to content

no output data


c172cpt

Recommended Posts

i cant seem to get any output data from the following structure i have looked it over and over

$gresult is the proper mysql result but no output is displayed

 

while($good_data = mysql_fetch_array($gresult)){

$system = $good_data['system'];

$port = $good_data['port'];

$errcode = $good_data['errcode'];

$time = $good_data['time'];

$date = $good_data['date'];

echo <<<HERE

<tr>

<td>

$system

</td>

<td>

$port

</td>

<td>

$errcode

</td>

<td>

$time

</td>

<td>

$date

</td>

</tr>

HERE;

}

Link to comment
https://forums.phpfreaks.com/topic/69139-no-output-data/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.