c172cpt Posted September 13, 2007 Share Posted September 13, 2007 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 More sharing options...
Jessica Posted September 13, 2007 Share Posted September 13, 2007 You're using the HEREdoc wrong. Link to comment https://forums.phpfreaks.com/topic/69139-no-output-data/#findComment-347522 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.