I am trying to run this query on my database, however it doesn't seem to do anything
$sql = "UPDATE PROVIDER SET
Approve = '1',
ASP_Name = '" . mysql_real_escape_string($ASP_Name) . "',
ASP_Phone = '" . mysql_real_escape_string($ASP_Phone) . "',
Display_Phone = '$Display_Phone',
ASP_Email = '$ASP_Email',
Display_Email = '$Display_Email',
ASP_Website = '$Website',
ASP_Website_URL = '$Website_URL',
ASP_Ethnicity = '$Ethnicity',
ASP_Age ='$Age',
ASP_Eye = '$Eye',
ASP_Hair_Color = '$Hair',
ASP_Hair_Length = '$Hair_Length',
ASP_Build = '$Build',
ASP_Height = '$Height',
ASP_Rate = '$Hourly_Rate',
Availability = '$Availability',
Services = '$Services_Offered',
Rules = '$Rules',
Tatoos = '$Tatoos',
Reviews = '$Reviews',
Reviews_URL = '$Revievs_URL',
Who = '" . mysql_real_escape_string($Who) . "',
Image1 = '$Image1',
Image2 = '$Image2',
Image3 = '$Image3',
Image4 = '$Image4',
Image5 = '$Image5',
Image6 = '$Image6'
WHERE ASP_ID = '$ASP_ID'";
mysql_query($sql) or die(mysql_error());
What is wrong?
Thanks...