Jump to content

error message help? :((


joshstevens19

Recommended Posts

so im connecting my netbeans php to phpmyadmin (database).. now in this i am trying to create a php code  statement which will take the inserted data into the html fields and insert them into my database successful.. anybody know what im doing wrong here is the error message:

 

Warning: mysql_query() expects parameter 1 to be string, resource given in C:\xampp\htdocs\PhpProject1\New Review.php on line 27

error inserting new record

 

 

 

 

 

<?php
if (isset($_REQUEST['submitted'])) {
    
    include('connect database.php');
    
    
    $showtitle = $_POST['SHOWTITLE'];
    $showreview =$_POST['SHOWREVIEW'];
    $sqlinsert = "INSERT INTO reviews (SHOWTITLE,SHOWREVIEW) VALUES('$showtitle', '$showreview')";
    
    if (!mysql_query($dbConn,$sqlinsert)) {
        die('error inserting new record'); 
        
        
        
    }


 

here is my html coding with it

 

<form method="post" action="New Review.php">

<input type="hidden" name="submitted" value="true" />

<fieldset> 

    <legend> New Reviews</legend> 

    <label> Enter show title:<input type ="text" name="SHOWTITLE" /></label>

    <label> Enter Review: <input type ="text" name="SHOWREVIEW" /></label>

</fieldset> 

<br /> 

<input type ="submit" value ="add new review" />

</form>
Link to comment
Share on other sites

The problem is that mysql_query() expects parameter 1 to be string and you gave it a resource :P.

 

mysqli_query() accepts the connection resource as the first parameter, not mysql_query(). You can fix it by taking the first variable out of the function call:

if (!mysql_query($sqlinsert)) {
Link to comment
Share on other sites

i have tried that part of changing and now it comes up with this Notice: Undefined variable: INSERT INTO reviews (SHOWTITLE,SHOWREVIEW) VALUES('Match Of The Day', 'amazing') in C:\xampp\htdocs\PhpProject1\New Review.php on line 27

error inserting new record

 

 

 

<?php
if (isset($_POST['submitted'])) {
    
    include('connect database.php');
    
    
    $showtitle = $_POST['SHOWTITLE'];
    $showreview =$_POST['SHOWREVIEW'];
    $sqlinsert = "INSERT INTO reviews (SHOWTITLE,SHOWREVIEW) VALUES('$showtitle', '$showreview')";
    
    if (!mysql_query($$sqlinsert)) {
        die('error inserting new record'); 
        
        
        
    }
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.