Hi, does anyone see anything wrong with this code off hand? I've tried many different ways and it still doesn't want to go into my database. I quadruple checked the database name and info. My best guess is that it's the variables. Possibly the variables I am getting from Flash aren't posting correctly? When I do a trace in Flash it says that the sendAndLoad is working. Anyways let me get your thoughts if your interested. Thanks.
<?php
$fname = $_POST['fname'];
$lname = $_POST['lname'];
$cname = $_POST['cname'];
$address = $_POST['address'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$logo_yes_no = $_POST['logo_yes_no'];
$font_yes_no = $_POST['font_yes_no'];
$fontchoice = $_POST['fontchoice'];
$bannerchoice = $_POST['bannerchoice'];
$navchoice = $_POST['navchoice'];
$colorchoice = $_POST['colorchoice'];
$templatechoice = $_POST['templatechoice'];
$gallerychoice = $_POST['gallerychoice'];
$homewrite = $_POST['homewrite'];
$aboutwrite = $_POST['aboutwrite'];
DEFINE ('DB_USER', 'dbusername'); // Insert your database username into the quotes.
DEFINE ('DB_PASSWORD', 'dbpassword'); // Insert your database password into the quotes.
DEFINE ('DB_HOST', 'dbhost'); // This will most likely stay the same.
DEFINE ('DB_NAME', 'dbname'); //Insert your actual database name in the quotes.
$dbc = @mysql_connect (DB_HOST, DB_USER, DB_PASSWORD) OR die ('Could not connect to MySQL: ' . mysql_error()); //@ is to o not show errors on the page
@mysql_select_db (DB_NAME) OR die('Could not select the database: ' . mysql_error() );
$query="INSERT INTO form_data (fname, lname, cname, address, phone, email, logo_yes_no, font_yes_no, fontchoice, bannerchoice, navchoice, colorchoice, templatechoice, gallerychoice, homewrite, aboutwrite) VALUES ('$fname', '$lname', '$cname', '$address', '$phone', '$email', '$logo_yes_no', '$font_yes_no', '$fontchoice', '$bannerchoice', '$navchoice', '$colorchoice', '$templatechoice', '$gallerychoice', '$homewrite', '$aboutwrite')"; //form_data is the name of the MySQL table where the form data will be saved.
$numR = mysql_num_rows($sql);
echo "Database updated with: $fname ";
?>