Jump to content

Query Using Mysqli Is Returning "field List" Error From $_Get


atticus

Recommended Posts

I know this must be a syntax error. This is the error:

 

Errormessage: Unknown column 'thisiserror' in 'field list'

 

Whatever variable I use in the URL for referrermedium is listed as the unknown column:

 

call.php?duration=127&callsource=callsource&datetime=datetime&trackingnum=123&callernum=3433&destinationnum=destinationnum&recording=recording&callername=callername&keywords=keywords&referrer=referrer&referrermedium=thisiserror&landingpage=landingpage

 

Code:

 

<?php
$callsource = $_GET['callsource'];
$duration = $_GET['duration'];
$datetime = $_GET['datetime'];
$trackingnum = $_GET['trackingnum'];
$callernum = $_GET['callernum'];
$destinationnum = $_GET['destinationnum'];
$recording = $_GET['recording'];
$callername = $_GET['callername'];
$keywords = $_GET['keywords'];
$referrer = $_GET['referrer'];
$referrermedium = $_GET['referrermedium'];
$landingpage = $_GET['landingpage'];

if ($mysqli->query("INSERT INTO calls (`callsource`, `duration`, `datetime`, `trackingnum`, `callernum`, `destinationnum`, `recording`, `callername`, `keywords`, `referrer`, `referrermedium`, `landingpage`) VALUES ($callsource, $duration, $datetime, $trackingnum, $callernum, $destinationnum, $recording, $callername, $keywords, $referrer, $referrermedium, $landingpage);") === TRUE) {
printf("Item inserted\n"); } else {printf ("Errormessage: %s\n", $mysqli->error); }
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.