<?php
$email = $_POST['email'];
$first = $_POST['first'];
$last = $_POST['last'];
$business = $_POST['business'];
$home = $_POST['home'];
$cell = $_POST['cell'];
$street = $_POST['street'];
$city = $_POST['city'];
$state = $_POST['state'];
$zip = $_POST['zip'];
$system = $_POST['system'];
$cameras = $_POST['cameras'];
$hdd = $_POST['hdd'];
if(isset($_POST['submit']))
{
$connect = mysql_connect('localhost','rebeler_customer','callaway87');
mysql_select_db("rebeler_customers");
mysql_real_escape_string($first);
$last = mysql_real_escape_string($last);
$business = mysql_real_escape_string($business);
$home = mysql_real_escape_string($home);
$cell = mysql_real_escape_string($cell);
$email = mysql_real_escape_string($email);
$street = mysql_real_escape_string($street);
$city = mysql_real_escape_string($city);
$state = mysql_real_escape_string($state);
$zip = mysql_real_escape_string($zip);
$system = mysql_real_escape_string($system);
$cameras = mysql_real_escape_string($cameras);
$hdd = mysql_real_escape_string($hdd);
$query = mysql_query("INSERT INTO `customers`(`email`,`firstname`,`lastname`, `businessname`,`homephone`, `cellphone`,`street`, `city`,`state`, `zip`,`system`, `cameras`, `hdd`) VALUES ('$email','$first','$last','$business','$home','$cell','$street','$city','$state','$zip','$system','$cameras','$hdd')");
}
?>
can I get some help seeing why my code is not posting the info to my db? it connects w/ db fine just doesn't write the info to it. let me know if you need anymore info, yall are always quick and helpful.