Set it to the page that is going to collect the data from the form.
In this case it looks like its the same place that the form is on.
e.g
HTML Code:<form method="post" action="currentpagename.php">
Set it to the page that is going to collect the data from the form.
In this case it looks like its the same place that the form is on.
e.g
HTML Code:<form method="post" action="currentpagename.php">
When you are posting those values, as opposed to being posted to MySQL, and therefore is posting it as queries. Its simply fixed by putting the form action, the <form> tag should look like this:
PHP Code:[COLOR="DarkRed"]<form action="<? $_SERVER['PHP_SELF'] ?>" method="post">[/COLOR]
Bookmarks