try putting quotes around variable names in $POST
They can be single '..... or double "
//
$SID = $_POST['SID'];
$LastName = $_POST['LastName'];
$FirstName = $_POST['FirstName'];
$JobTitle = $_POST['JobTitle'];
//etc, etc
and please start using php long tags instead of <?
if you do not learn this now, you will have to learn in future - the hard way :eek:
you wont be the first having to spend hours and hours rewrite all your php pages
<?php
Regards - your friendly adviser