AJAX call wont work in Safari

Can anyone figure out why this will work in IE and Firefox but not Safari? Im pulling my hear out.

[php]

Concept Builders <?php include 'dbconfig.php'; include 'dbopen.php'; $plan=$_GET["plan"]; $sql = "SELECT * FROM homes WHERE plan_id= '".$plan."'"; $result = mysql_query($sql); while ($row = mysql_fetch_array($result)) { $price=$row['price']; $sqft=$row['sqft']; $beds=$row['bedrooms']; $baths=$row['baths']; $amenities=$row['amenity_1'].", ".$row['amenity_2']; } setlocale(LC_MONETARY, 'en_US'); $price=money_format('%(#6.0n', $price); $plan_details= "
Price: ".$price."
SQ Feet: ".$sqft."
Amenities:
".$amenities."
";?> [/php]

What type of error are you getting and what is it saying on the screen in safari when you try it? Thanks.

Sponsor our Newsletter | Privacy Policy | Terms of Service