Jump to content

[SOLVED] quick echo problem


blueman378

Recommended Posts

hi guys, well basically this is the code:

<?php
    global $database;
    $q = "SELECT * FROM " . Games . "
          ORDER BY `gplays` ASC
         ";   
    $result = $database->query($q) or die("Error: " . mysql_error());
    /* Error occurred, return given name by default */
    $num_rows = mysql_numrows($result);
    if( $num_rows == 0 ){
      return 'Game Not Found!';
    }
    while( $row = mysql_fetch_assoc($result) ) {
    echo $row[gName]"<tr>
<td class='topgamerow'>
<a href='showgame.php?game=".$row[gName]."'>
".$row[gName]."</a>
</td><td class='topgamerow' align='right'>
".$row[gplays]."
</td></tr>";
    }

?>

 

and this is the error :)

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in C:\wamp\www\maingame.php on line 15

Link to comment
https://forums.phpfreaks.com/topic/81142-solved-quick-echo-problem/
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.