mysql - Inserting information into table in PHP (Issue) -


        $stm2 = $conn->prepare("insert (onet, twot) values (?, ?)");         $userone ="netsgets";         $usertwo="netsgets2";         $stm2->bind_param('ss',$userone,$usertwo);          $stm2->execute();         $stm2->store_result();   

the code above should add netsgets , netsgets2 table of together. reason error. fatal error: call member function bind_param(). mean?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -