When ever I load a certain page on my website, I get this message:
http://conmiro.com/submit.php
Here is the script of submit.php:
<?php
$con = mysql_connect("localhost","conmiro_conmiro","****************");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}mysql_select_db("my_db", $con);mysql_query
("INSERT INTO websites (sitename, description, email)
VALUES ('$_POST["age"]', '$_POST["age"]', '$_POST["age"]')");
mysql_close($con);
?>
If you can help me, il give you some points.
Edit:
VALUES ('$_POST["age"]', '$_POST["age"]', '$_POST["age"]')");
Thats line 8.
http://conmiro.com/submit.php
Here is the script of submit.php:
<?php
$con = mysql_connect("localhost","conmiro_conmiro","****************");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}mysql_select_db("my_db", $con);mysql_query
("INSERT INTO websites (sitename, description, email)
VALUES ('$_POST["age"]', '$_POST["age"]', '$_POST["age"]')");
mysql_close($con);
?>
If you can help me, il give you some points.
Edit:
VALUES ('$_POST["age"]', '$_POST["age"]', '$_POST["age"]')");
Thats line 8.
Last edited: