if($_REQUEST['location'] != "") { if(intval($_REQUEST['location']) == 0) { $bits = explode(",", $_REQUEST['location']); $loc = trim(mysql_escape_string($bits['0'])); $reg = trim(mysql_escape_string($bits['1'])); $ccname = trim(mysql_escape_string($bits['2'])); $query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where `locations`.`name` like '$loc%' and `regions`.`name` like '$reg%' and `countries`.`name` like '$ccname%' and `locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id` order by `locations`.`name` limit 1"; $res = mysql_query($query); if($reg != "" && $ccname == "" && mysql_num_rows($res) <= 0) { $query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where `locations`.`name` like '$loc%' and `countries`.`name` like '$reg%' and `locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id` order by `locations`.`name` limit 1"; $res = mysql_query($query); } if(mysql_num_rows($res) <= 0) die("Unable to find suitable location"); $row = mysql_fetch_assoc($res); $_REQUEST['location'] = $row['locid']; } $locid = intval($_REQUEST['location']); $query = "select * from `locations` where `id`='$locid'"; $res = mysql_query($query); if(mysql_num_rows($res) > 0) { $loc = mysql_fetch_assoc($res); $_SESSION['profile']['ccid'] = $loc['ccid']; $_SESSION['profile']['regid'] = $loc['regid']; $_SESSION['profile']['locid'] = $loc['id']; $query = "update `users` set `locid`='$loc[id]', `regid`='$loc[regid]', `ccid`='$loc[ccid]' where `id`='".$_SESSION['profile']['id']."'"; mysql_query($query); echo "
"._("Your location has been updated")."
\n"; } else { echo ""._("I was unable to match your location with places in my database.")."
\n"; } } $query = "select `name` from `locations` where `id`='".$_SESSION['profile']['locid']."'"; $res = mysql_query($query); $loc = mysql_fetch_assoc($res); $query = "select `name` from `regions` where `id`='".$_SESSION['profile']['regid']."'"; $res = mysql_query($query); $reg = mysql_fetch_assoc($res); $query = "select `name` from `countries` where `id`='".$_SESSION['profile']['ccid']."'"; $res = mysql_query($query); $cc = mysql_fetch_assoc($res); ?>=_("Please enter your town or suburb name, followed by region or state or province and then the country (please separate by commas)")?>
=_("eg Sydney, New South Wales, Australia")?>
=_("This is an AJAX form which depends heavily on javascript for auto-complete functionality and while it will work without javascript the usability will be heavily degraded.")?>
=sprintf(_("Your current location is set as: %s"), "$loc[name], $reg[name], $cc[name]")?>