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; } Quote Link to comment Share on other sites More sharing options...
Jessica Posted September 13, 2007 Share Posted September 13, 2007 You're using the HEREdoc wrong. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.