I am in the process of developing a website, and I want people to be able to register on the site. I am using PHP with MySQL, and what I need help with is creating the register.php page. On this page I want users to enter all their info which will then be added to the database. I am wondering two things:
what data type should I use for the email field in the MySQL database? I think it should be VARCHAR. but i am not %100 sure.
and.... I want users to select their state from a drop down menu. how do i make this? I found this piece of code and i am wondering if it will work, or what else I need to do to connect it to the database.
i am kind of confused, and would really appreciate help with this. If the above code is ok to use, how do i implement it? Let me tell you, that i am not really learning PHP from the start, I am just more so learning as I go, learning what I need to make the site. Please help, and many thanks in advance to anyone who can help me out. I dont have much to offer you, except for some rep+ hehe.
Thanks!!!
what data type should I use for the email field in the MySQL database? I think it should be VARCHAR. but i am not %100 sure.
and.... I want users to select their state from a drop down menu. how do i make this? I found this piece of code and i am wondering if it will work, or what else I need to do to connect it to the database.
Code:
<?
$category = array(
1=> "Alabama",
2=> "Alaska",
3=> "Arizona",
4=> "Arkansas",
5=> "California",
);
$category = str_replace(" ", " ", $category);
echo '<SELECT name=category>';
foreach ($category as $key => $value)
{
echo '<OPTION value='.$value.'> '.$value.'';
}
echo '</select>';
?>
i am kind of confused, and would really appreciate help with this. If the above code is ok to use, how do i implement it? Let me tell you, that i am not really learning PHP from the start, I am just more so learning as I go, learning what I need to make the site. Please help, and many thanks in advance to anyone who can help me out. I dont have much to offer you, except for some rep+ hehe.
Thanks!!!







