is this date being the american form going to be a problem.
also my sql insert string is tool long and is wrapping. how do i break it so i can return it to another line.
eg.,
$sql = "INSERT into Listings (street_number,street_name,suburb,type,status,property_id,price_prefix,price,auction_display,auction_date,auction_time_open,auction_open_select,auction_time_close,auction_close_select,auction_venue,floor_area,land_area,beds,toilets,baths,lugarage,air_con,fireplace,Security,home_auto,spa,pool,ensuite,tennis_court,home_theatre,central_vacuum,study,horses,jetty,terrace_balcony,extra_features,headline,brief_description,description,agent) values('$street_number', '$street_name', '$suburb', '$type', '$status', $property_id, '$price_prefix', $price, '$auction_display', '$auction_date', '$auction_time_open', '$auction_open_select', '$auction_time_close', '$auction_close_select', '$auction_venue', $floor_area, $land_area, $beds, $toilets, $baths, $lugarage, $air_con, $fireplace, $Security, $home_auto, $spa, $pool, $ensuite, $tennis_court, $home_theatre, $central_vacuum, $study, $horses, $jetty, $terrace_balcony, '$extra_features', '$headline', '$brief_description', '$description', $agent)" or die("Invalid query: " . mysql_error());
$sql = "INSERT into Listings (street_number,street_name,suburb,type,status,property_id,price_prefix,price,auction_display,auction_date,auction_time_open,auction_open_select,auction_time_close,auction_close_select,auction_venue,floor_area,land_area,beds,toilets,baths,lugarage,air_con,fireplace,Security,home_auto,spa,pool,ensuite,tennis_court,home_theatre,central_vacuum,study,horses,jetty,terrace_balcony,extra_features,headline,brief_description,description,agent)
*break here* is it just ". (in ASP its just "_)
values('$street_number', '$street_name', '$suburb', '$type', '$status', $property_id, '$price_prefix', $price, '$auction_display', '$auction_date', '$auction_time_open', '$auction_open_select', '$auction_time_close', '$auction_close_select', '$auction_venue', $floor_area, $land_area, $beds, $toilets, $baths, $lugarage, $air_con, $fireplace, $Security, $home_auto, $spa, $pool, $ensuite, $tennis_court, $home_theatre, $central_vacuum, $study, $horses, $jetty, $terrace_balcony, '$extra_features', '$headline', '$brief_description', '$description', $agent)" or die("Invalid query: " . mysql_error());