First of all, thanks for your help Alen. I'm really stumped, and you are probably correct.
How would I tell you what my update query would look like upon execution? Is there a function I can run during the process?
I can cut some code here for you: (script is in early stages)
//prepare SQL Statement
$sql = "UPDATE table_name SET title ='$title', name = '$name', degree = '$degree', other = '$other', type = '$type', address = '$address', phone = '$phone', fax = '$fax', email = '$email', description = '$description', salary = '$salary', deadline = '$deadline' where job_id = '$job_id'";
function parse_string($str) {
return str_replace("'", "''", stripslashes(trim($str)));
}
//Create Connection
$connection = mysql_connect("server", "user", "pw") or die ("Could not connect the database");
//Select Database
$db = mysql_select_db("main",$connection) or die ("Couldn't select database");
//execute SQL query and get result
$sql_result = mysql_query($sql, $connection) or die ("Couldn't execute query");
All I can say is that this badboy runs, but nothing is being updated. You are probably right about the job_id aspect, but in the form previous to this I pull up all the information via the job_id and can alter all the variables for submission.