Here's the code:
$insert = "INSERT INTO
membership
SET
name = '$name',
fname = '$fname',
mi = '$mi',
lname = '$lname',
address1 = '$address1',
address2 = '$address2',
city = '$city',
state = '$state',
zip = '$zip',
phone = '$phone',
fax = '$fax',
employees = '$employees',
email = '$email',
url = '$url'";
$result = mysql_query($insert) or die('Message: ' . mysql_error());
I'll be out for 3 or so hours but will check in when I get back- thanks for your time!
BTW, the variables were converted from $POST variables, as in $name = $POST['name'];.