just another note, you may want to look into mysql_real_escape_string() to escape the posted data before insertion.
(This isn't really necessary but I'm rather bored this week) -assuming this is all your $_POST data, you can use the following to make your code a lot similar since your form names match that of your variables. additionally you may want to look into preforming a verification / validation / checking or the posted data, ie; make sure fields aren't blank, etc
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
include("../inc/dbConnect.php");
if(isset($_POST['salesperson'])) {
foreach ($_POST as $k => $v) {
${$k} = (isset($v)) ? mysql_real_escape_string($v) : '';
}
$sql = "INSERT INTO
faceBadge
(salesperson, salesID, salesEmail, bizName, bizType, badgeImg)
VALUES
('".$salesperson."', '".$salesID."', '".$salesEmail."', '".$bizName."', '".$bizType."', '".$badgeImg."')";
}
?>