Jump to content

[SOLVED] Unknown column 'test' in 'field list'?!?


Shaun13

Recommended Posts

Ok, so I am having some user-inputed data inserted into the table "nav_links" and it outputs this error:

 

Unknown column 'h' in 'field list'

 

I have got the area down to this piece of code.

 

elseif($_GET['do'] == 'add_link')
{
$id = $_GET['cat'];
if($_GET['go']=='true')
	{
	$link_name = $_POST['link_name'];
	$url = $_POST['url'];

	if(empty($link_name))
		{
		$error_txt = 'Enter a link title.';
		}
	elseif(empty($url))
		{
		$error_txt = 'Enter a URL.';
		}
	else
		{
		$max = mysql_query('SELECT MAX(id) FROM nav_links');
		$max_array = mysql_fetch_array($max);
		$max_id = $max_array['MAX(id)'] +1;
		$query = mysql_query('INSERT INTO `nav_links` (`id` ,`cat_id` ,`url` ,`name`) VALUES ('.$max_id.', '.$id.', '.$url.', '.$link_name.')');
		if($query)
			{
			$error_txt = 'Link Added Successfully.';
			}
		else
			{
			$error_txt = mysql_error();
			}
		}
	}

 

Any help?

 

Thanks in advance,

 

~Shaun

Link to comment
https://forums.phpfreaks.com/topic/66044-solved-unknown-column-test-in-field-list/
Share on other sites

I don't see anything obvious with that particular snippet, except that the entire query is in single quotes while you have single quotes around the text elements in the query.  I'd try putting the query itself in double quotes.  

 

For troubleshooting purposes, it's also a good thing to do this:

 

$query = "insert into (COLUMN) VALUES (blah)";

$result = mysql_query($query);

echo"<BR>  The attempted query was $query";

 

That will let you see what is being sent to mysql.  You can comment out or delete the echo line once you verify the page is working as intended.

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.