Jump to content

MYSQLi and PHP **please help**


poolanex

Recommended Posts

I not sure if its possible but i wanna convert this code piece using a prepared statement

 

function list_owner_notes(){

            $id = $this->id;

            $sql = "SELECT nid, title FROM notes JOIN hubs ON notes.hub_url=hubs.hub_url WHERE owner = '$id'";

            $result = mysql_query($sql) or die(mysql_error());

            $notes = array();

 

            for($i=0; $row = mysql_fetch_array($result, MYSQL_ASSOC); $i++){

                $notes[$i]=$row;

            }

 

            return $notes;

        } 

 

this is what i came up with so far but dont know how to handle it to return an array

 

 

        function get_owner_hubs(){

$id = $this->id;

 

            $$stmt = $dbs->stmt_init();

            if($stmt->prepare("SELECT 'nid', 'title' FROM 'notes' JOIN 'hubs' ON 'notes.hub_url' = 'hubs.hub_url' WHERE 'owner' = ?"))

                      {

                              $stmt->bind_param('i', $id);

                              $stmt->execute();

                              $stmt->bind_result($nid, $title);

 

                              while($rows = $stmt->fetch_array())

                              {

                                      $this->nid = $nid;

                                      $this->title = $title;

                                                                      }

                              $stmt->close();

                      } else die(mysql_error());

 

the goal is to prevent script injection for the input value and id like to try and beable to return the results from the qury as an array using the MYSQLI STMT class if possible.  Thanks

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.