Inserting into MySQL question
Posted: Sat Oct 26, 2002 10:36 am
Hey all,
I was just reading a tutorial on making a news script, when i came across this:
What are the $_POST variables? I always see them, but never ever see where they're defined in any scripts.
Are the predefined by PHP or something? If they are, what do they mean?
Later all, - Tom
I was just reading a tutorial on making a news script, when i came across this:
Code: Select all
$query = "INSERT INTO news(title, news, author, date)
VALUES('".$_POSTї'title']."','".$_POSTї'news']."','".$_POSTї'author']."', now())";
mysql_query($query);Are the predefined by PHP or something? If they are, what do they mean?
Later all, - Tom