Jump to content

[SOLVED] sql read error


blueman378

Recommended Posts

hi guys, this code should be self explanatory,:

<?php
$fil = $_POST["name"]
    $q = "SELECT * FROM " . Games . "
          WHERE gName = '$fil'
          ORDER BY `gName` 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[gSwfFile];
    }

?>

 

but i get :

Parse error: syntax error, unexpected T_VARIABLE in C:\wamp\www\admin\file.php on line 3

 

any ideas?

 

thanks people

Link to comment
Share on other sites

q = "SELECT * FROM " . Games . "

          WHERE gName = '$fil'

          ORDER BY `gName` ASC

        ";

 

 

just place it in one line like this ( you also missed a $ i think)

 

$q = "SELECT * FROM ".$Games." WHERE gName = '".$fill."' ORDER BY gName ASC";

 

Hope that helps

Link to comment
Share on other sites

q = "SELECT * FROM " . Games . "

          WHERE gName = '$fil'

          ORDER BY `gName` ASC

        ";

 

 

just place it in one line like this ( you also missed a $ i think)

 

$q = "SELECT * FROM ".$Games." WHERE gName = '".$fill."' ORDER BY gName ASC";

 

Hope that helps

 

the reason it is split up is error checking eg the enters dont create any problems but it means when it says error on line XX it is easier to tell thanks,

 

but it got rid of that error ( the semicolon i mean)

 

thanks guys

Link to comment
Share on other sites

but now i get :

Warning: rename(../games_ins/1,../games_uins/1) [function.rename]: No such file or directory in C:\wamp\www\admin\gameuninstaller.php on line 160

 

which is :

rename("../games_ins/$file", "../games_uins/$file");

 

$file is a include which includes:

<?php
$fil = $_POST["name"];
    $q = "SELECT * FROM " . Games . "
          WHERE gName = '$fil'
          ORDER BY `gName` 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[gSwfFile];
    }

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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