I have a question secuirty. Is it safe enough to do:
$fname = mysql_real_escape_string(htmlentities($_POST['fname']));
$lname = .....($_POST['lname']));
etc
and insert it into the table like:
mysql_query("INSERT INTO North_America
(first_name, middle_name, last_name, email, phone, country) VALUES('$fname', '$mname', '$lname', '$email', '$phone', '$country') ")
or die(mysql_error());
Or do I need more validating?