Jump to content

php mysql simple script not working.


EchoSeven

Recommended Posts

Hello. i am writing an API for lua... that sends POST requests to a php script. this php script is malfunctioning. below is the code and error.

 

Code:

<?php
 
        $host = $_POST['host'];
        $port = $_POST['port'];
        $user = $_POST['user'];
        $password = $_POST['password'];
        $db = $_POST['db'];
        $query = $_POST['query'];
        $query = urldecode($query);
 
        $connection = mysql_connect($host,$user,$password) or die("err1");
        mysql_select_db($db) or die("err2");
 
        $resource = mysql_query($query);
 
        $rows = array();
        while($r = mysql_fetch_object($resource)){
                $rows[] = $r;
        }
 
        echo json_encode($rows);
//echo $rows;
 
        mysql_close();
 
?>

 

Error:

html passed to JSON:decode(): <br /><b>Warning</b>: mysql_fetch_object(): supplied argument is not valid MySQL result resource in [server url] on line 17

 

Note: it does actually connect to the Database as per previous experiments with the code. JSON:decode() is working and therefore not the problem, since it was the PHP that gave this error to the JSON handler API. The server is working correctly as i use it all the time to make MySQL requests. though, never with this php code. i use a framework to do it for me. but it seems to be working correctly which verifies this php script ás what is malfunctioning.

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.