简体   繁体   中英

Error Column count doesn't match value count at row 1?

where is error..... Column count doesn't match value count at row 1

mysqli_select_db($conn, $data);
    $save = "INSERT INTO SONG_AS(ALBUM, CATEGORY, SUB_CATEGORY,
        SONG_NAME, ARTIST, ART_LINK, 
        YEAR, GENRE, SONG_LINK, POST_ON, 
        POST_BY, TOTAL_DOWNLOAD) 
            VALUES('$albm', '$cat', '$scat', "
            . "'$sn', '$art', '$img', "
            . "'$y', '$g', "
            . "'$sl', '$time', '', '0')";


    $success = mysqli_query($conn, $save) or die(mysqli_error($conn));
    $page = "index.php";
    $this->pageRedirect($page);

where is error..... Column count doesn't match value count at row 1

remove '' from your query to be:

$save = "INSERT INTO SONG_AS(ALBUM, CATEGORY, SUB_CATEGORY,
        SONG_NAME, ARTIST, ART_LINK, 
        YEAR, GENRE, SONG_LINK, POST_ON, 
        POST_BY, TOTAL_DOWNLOAD) 
            VALUES('$albm', '$cat', '$scat','$sn', '$art', '$img', '$y', '$g', '$sl', '$time', '', '0')";

Try this:

$save = "INSERT INTO SONG_AS(`ALBUM`, `CATEGORY`, `SUB_CATEGORY`,
                    `SONG_NAME`, `ARTIST`, `ART_LINK`, 
                    `YEAR`, `GENRE`, `SONG_LINK`, `POST_ON`, 
                `POST_BY`, `TOTAL_DOWNLOAD`) 
        VALUES('".$albm."', '".$cat."', '".$scat."','".$sn."', '".$art."', '".$img."', '".$y."', '".$g."', '".$sl."', '".$time."', '', '0')";
 $query = "INSERT INTO employee VALUES ($empno','$lname','$fname','$init','$gender','$bdate','$dept','$position','$pay','$dayswork','$otrate','$othrs','$allow','$advancesance,'')";
    $msg = "New record saved!";
  }
  else {
    $query = "UPDATE employee SET empno=$empno','lname='$lname',fname='$fname',init= '$init',gender='$gender',bdate='$bdate',dept='$dept',position='$position',pay=$pay,dayswork=$dayswork,otrate=$otrate,othrs=$othrs,allow=$allow,advances=$advances,insurance=$insurance WHERE empno = $empno";
    $msg = "Record updated!";
  }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM