Re: Newbie 2
- From: chaghri <cagri.balkesen@xxxxxxxxx>
- Date: Fri, 29 Jun 2007 15:06:14 -0700
I think after the line below,
if ($_POST['submit'] == "Register")you should get the inputs into $username and $password variables from
post array as follows:
$username = $_POST['whatevertheinputfieldname'];
$password = $_POST['whatevertheinputfieldname'];
On Jun 30, 12:52 am, Reggie <joelregisfo...@xxxxxxxxxxx> wrote:
Notice: Undefined variable: username in /home/fhlinux169/c/
clashoff.co.uk/user/htdocs/create_entry.php on line 11
Notice: Undefined variable: password in /home/fhlinux169/c/
clashoff.co.uk/user/htdocs/create_entry.php on line 11
Ive got a new error message please help.Am trying to setup userlogin
on my website.
This is the code:
<?php
mysql_connect("localhost","root") or
die ("Could not connect to database");
mysql_select_db("user") or
dir ("Could not select database");
if ($_POST['submit'] == "Register")
{
$query = "insert into users
(username, password) values ('$username', '$password')";
mysql_query($query) or
die (mysql_error());
?>
<h3>You are now registered</h3>
<a href="index.html">Go back to main page</a>
<?php}
else
{
print("not registered");}
?>
.
- Follow-Ups:
- Re: Newbie 2
- From: Reggie
- Re: Newbie 2
- References:
- Newbie 2
- From: Reggie
- Newbie 2
- Prev by Date: Re: ORACLE Describe Table
- Next by Date: Re: Did a phpinfo. What does this "Configure Command" output mean?
- Previous by thread: Newbie 2
- Next by thread: Re: Newbie 2
- Index(es):
Relevant Pages
|