Well I have tried that actually, and it does nothing but print out the ID Variable- to help you guys help me- here is the whole parser script-
<?php
session_start();
########################################
This Parses the Modify Profile App
########################################
###################
Include Files
###################
include ("file outside of root that has MYSQL variables");
#########################
Connect to Database
#########################
$TableName1 = "auth";
$TableName2 = "profile";
$TableName3 = "bio";
$Link1 = mysql_connect($Host, $User, $Password);
mysql_select_db($DBName, $Link1);
$MID = $varpass;
#########################################################################
GO THROUGH IF STATEMENTS TO DETERMINE WHAT DATA NEEDS TO BE UPDATED
#########################################################################
IF (chgpass=='1') {
$Query1 = "UPDATE $TableName1 SET pass='$pass' WHERE auth.auth_id='$MID'";
}
IF (chgemail=='1') {
$Query2 = "UPDATE $TableName2 SET email='$email' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query3 = "UPDATE $TableName2 SET fname='$fname' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query4 = "UPDATE $TableName2 SET lname='$lname' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query5 = "UPDATE $TableName2 SET occupation='$occupation' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query6 = "UPDATE $TableName2 SET country='$country' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query7 = "UPDATE $TableName2 SET city='$city' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query8 = "UPDATE $TableName2 SET state='$state' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query9 = "UPDATE $TableName2 SET timezone='$timezone' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query10 = "UPDATE $TableName2 SET aim='$aim' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query11 = "UPDATE $TableName2 SET interest='$interests' WHERE profile.profile_id='$MID'";
}
IF (chgpass=='1') {
$Query12 = "UPDATE $TableName3 SET species='$species' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query13 = "UPDATE $TableName3 SET cage='$cage' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query14 = "UPDATE $TableName3 SET cgender='$cgender' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query15 = "UPDATE $TableName3 SET force='$force' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query16 = "UPDATE $TableName3 SET pro1='$pro1' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query17 = "UPDATE $TableName3 SET pro2='$pro2' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query18 = "UPDATE $TableName3 SET imageurl='$image' WHERE bio.bio_id='$MID'";
}
IF (chgpass=='1') {
$Query19 = "UPDATE $TableName3 SET chistory='$chistory' WHERE bio.bio_id='$MID'";
}
print ("$Query1");
print ("$Query2");
print ("$Query3");
print ("$Query4");
print ("$Query5");
print ("$Query6");
print ("$Query7");
print ("$Query8");
print ("$Query9");
print ("$Query10");
print ("$Query11");
print ("$Query12");
print ("$Query13");
print ("$Query14");
print ("$Query15");
print ("$Query16");
print ("$Query17");
print ("$Query18");
print ("$Query19");
print ("MID IS : $MID");
print ("Varpass is $varpass");
?>