06-02-2005, 01:27 AM
|
#20 (permalink)
|
|
The Wanderer
Join Date: Jun 2005
Posts: 13
Thanks: 0
|
Code:
<html>
<head>
<title>Sign Up Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Welcome new customer! Please fill out the form below to begin.<br>
<br>
<form name="signup" method="GET"
action="signup.php">
FirstName: <input type="text" FirstName="FirstName"><br>
LastName: <input type="text" LastName="LastName"><br>
Email: <input type="text" Email="Email"><br>
Phone#: <input type="text" Phone="Phone"><br>
Address: <input type="text" Address="Address"><br>
City: <input type="text" City="City"><br>
State: <input type="text" State="State"><br>
Zip: <input type="text" Zip="Zip"><br>
Username: <input type="text" Username="Username"><br>
Password: <input type="password" Password="Password"><br>
<input type="submit" name="Submit" value="Sign Up">
</form>
</body>
</html>
K there is the "signup.html" form that should be correct. As far as selecting the db that I want to work on isn't that what the
PHP Code:
"insert into cashflow_members.client
line is for?
Now in the members database and the clients table there is "FirstName, LastName, Email, etc...." And I made sure to use caps where they were and no spaces so that should'nt be the problem either right?
|
|
|
|