header('Content-Type: text/html; charset=utf-8');
session_start();
include("db.php");
$realtitle = str_replace("-"," ",$_REQUEST["pl"]);
$ckey = $realtitle;
$dt = "Book a Massage in ".ucwords($realtitle)." today. The best Masseurs";
include("metas.php");
include("header.php");
?>
We offer the best massage studios, massage therapists and masseurs in .
Just browse the listings and select your favourite masseur
$stmt = $pdodb->prepare("SELECT fname,mainpic,views,city,country,username,aboutme FROM girls WHERE city=:ckey AND approved=1 ORDER by views desc LIMIT 50");
$stmt->bindParam(':ckey',$ckey);
$stmt->execute();
echo '
';
while($i3=$stmt->fetch()) {
echo '
';
}
if($stmt->rowCount() == 0){
echo '
';
}
echo '
';
?>
registered masseurs by name
$stmt = $pdodb->prepare("SELECT fname,username FROM girls WHERE city=:ckey");
$stmt->bindParam(':ckey',$ckey);
$stmt->execute();
while($i3=$stmt->fetch()) {
echo ''.$i3["fname"].'
'.$i3["username"].' ';
}
?>
include('footer.php');
?>