prepare("SELECT username FROM girls WHERE username=:username"); $stmt->bindParam(':sessid',$_SESSION["uid"],PDO::PARAM_INT); $stmt->execute(); while($i3=$stmt->fetch()) { $username = $i3["username"]; } */ $city = ucwords(trim(strip_tags($_REQUEST["city"]))); if($city <> ""){ #echo 'getting city'; $geocode = getGeoCode($city." ".$c_codes[$_REQUEST["country"]]); #print_r($getcode); #echo $geocode["lat"]; $d_lat2 = $geocode["lat"]; $d_lon2 = $geocode["lon"]; if($d_dblat == 0){ /* $stmt = $pdodb->prepare("UPDATE LOW_PRIORITY forum SET dblat=:dblat, dblon=:dblon WHERE mid=:mid AND dblat=0"); $stmt->bindParam(':dblat',$d_lat2); $stmt->bindParam(':dblon',$d_lon2); $stmt->bindParam(':mid',$_SESSION["uid"]); $stmt->execute(); */ } }else{ $d_lat2 = 0; $d_lon2 = 0; } $_REQUEST["paypal"] = str_ireplace("https://www.paypal.me/","",$_REQUEST["paypal"]); $_REQUEST["paypal"] = str_ireplace("paypal.me/","",$_REQUEST["paypal"]); $cashapp["paypal"] = str_ireplace("$Cash.app/","",$_REQUEST["cashapp"]); if(stristr($_REQUEST["skyfeed"],"skyfeed") && stristr($_REQUEST["skyfeed"],"user")){ $_REQUEST["skyfeed"] = $_REQUEST["skyfeed"]; }else{ $_REQUEST["skyfeed"] = ""; } $bday = $_REQUEST["bday"]; $bmonth = $_REQUEST["bmonth"]; $byear = $_REQUEST["byear"]; $stmt2 = $pdodb->prepare("UPDATE LOW_PRIORITY girls SET aboutme=:aboutme, country=:country,bmonth=:bmonth,byear=:byear,bday=:bday,rstatus=:rstatus,city=:city,fname=:fname,username=:username, jobdesc=:jobdesc, socmedia=:socmedia, edu=:edu,emailis=:emailis,ffooter=:ffooter,dblon=:dblon,dblat=:dblat,tags=:tags,nostrnpub=:nostrnpub,cashapp=:cashapp,venmo=:venmo,favrelay=:favrelay,bitcoin=:bitcoin,onlyfans=:onlyfans,instagram=:instagram,twitter=:twitter,gender=:gender,datingact=:datingact,citylon=:dblon,citylat=:dblat,telegram=:telegram,kinaddress=:kinaddress,children_preference=:children_preference,height=:height,sorientation=:sorientation WHERE ID=:user_id"); $stmt2->bindParam(':aboutme',trim(strip_tags($_REQUEST["aboutme"]))); // Bind the new parameters $stmt2->bindParam(':bday', $bday, PDO::PARAM_INT); $stmt2->bindParam(':bmonth', $bmonth, PDO::PARAM_INT); $stmt2->bindParam(':byear', $byear, PDO::PARAM_INT); $stmt2->bindParam(':emailis',$_REQUEST["emailis"]); $stmt2->bindParam(':bmonth',$_REQUEST["bmonth"]); $stmt2->bindParam(':byear',$_REQUEST["byear"]); $stmt2->bindParam(':country',$_REQUEST["country"]); $stmt2->bindParam(':rstatus',$_REQUEST["rstatus"]); $stmt2->bindParam(':user_id',$_SESSION["uid"],PDO::PARAM_INT); $stmt2->bindParam(':city',trim($city)); $stmt2->bindParam(':fname',ucwords($_REQUEST["fname"])); $stmt2->bindParam(':jobdesc',strip_tags($_REQUEST["jobdesc"])); $stmt2->bindParam(':socmedia',strip_tags($_REQUEST["socmedia"])); $stmt2->bindParam(':edu',strip_tags($_REQUEST["edu"])); $stmt2->bindParam(':ffooter',strip_tags($_REQUEST["ffooter"])); $stmt2->bindParam(':username',$username); $stmt2->bindParam(':dblon',$d_lon2); $stmt2->bindParam(':dblat',$d_lat2); $stmt2->bindParam(':cashapp',trim($_REQUEST["cashapp"])); $stmt2->bindParam(':venmo',trim($_REQUEST["venmo"])); $stmt2->bindParam(':bitcoin',trim($_REQUEST["bitcoin"])); $stmt2->bindParam(':instagram',trim($_REQUEST["instagram"])); $stmt2->bindParam(':onlyfans',trim($_REQUEST["onlyfans"])); $stmt2->bindParam(':twitter',trim($_REQUEST["twitter"])); $stmt2->bindParam(':gender',trim($_REQUEST["gender"])); $stmt2->bindParam(':nostrnpub',trim($_REQUEST["nostrnpub"])); $telegram = str_replace("@","",$_REQUEST["telegram"]); $stmt2->bindParam(':telegram',trim($telegram)); $stmt2->bindParam(':datingact',trim($_REQUEST["datingact"])); $stmt2->bindParam(':favrelay',trim($_REQUEST["favrelay"])); $stmt2->bindParam(':tags',trim($_REQUEST["tags"])); $stmt2->bindParam(':kinaddress',trim($_REQUEST["kinaddress"])); $stmt2->bindParam(':children_preference',$_REQUEST["children_preference"]); $stmt2->bindParam(':height',trim($_REQUEST["height"])); $stmt2->bindParam(':sorientation',trim($_REQUEST["sorientation"])); $stmt2->execute(); if($city <> ""){ if($_REQUEST["country"] <> ""){ $fullplace = str_replace(" ","-",$city).'-'.str_replace(" ","-",$c_codes[$_REQUEST["country"]]); }else{ $fullplace = str_replace(" ","-",$city); } $stmt = $pdodb->prepare("SELECT ID FROM forums WHERE forumseo=:name2 LIMIT 1"); $stmt->bindParam(':name2',$fullplace); $stmt->execute(); $nrows = $stmt->rowCount(); if($nrows == 0){ #echo 'fullplace'.$fullplace; $fullcity = $city.' '.$c_codes[$_REQUEST["country2"]]; $stmt = $pdodb->prepare("INSERT IGNORE INTO forums (forumtitle, forumseo,dblat,dblon) VALUES(:name,:name2,:dblat,:dblon)"); $stmt->bindParam(':name',$fullcity); $stmt->bindParam(':name2',$fullplace); $stmt->bindParam(':dblat',$d_lat2); $stmt->bindParam(':dblon',$d_lon2); $stmt->execute(); $forumid = $pdodb->lastInsertId(); }else{ #echo 'exists'; while($i3=$stmt->fetch()) { $forumid = $i3["ID"]; } } /* $lastvoteint = intval(date("YmdHi")); $preptitle = "I am ".$_REQUEST["fname"]." and new in ".$city." Forum"; $seourl = str_replace(" ","-",$preptitle); $anon = 0; $cat = $city; $descis = "feel free to write me (".$_REQUEST["fname"].") here in the ".$city." Forum "; $stmt = $pdodb->prepare("INSERT IGNORE INTO forum (titleis, seox,descis,mid,timeposted,forum,forumseo,anon,lastvoteint,votepoints,dblon,dblat) VALUES(:titleis,:seourl,:descis,:mid,now(),:forumid,:forumseo,:anon,:lastvoteint,1,:dblon,:dblat)"); $pdodb->setAttribute(PDO::ATTR_EMULATE_PREPARES,false); $stmt->bindParam(':dblat',$d_lat2); $stmt->bindParam(':dblon',$d_lon2); $stmt->bindParam(':titleis',$preptitle); $stmt->bindParam(':seourl',$seourl); $stmt->bindParam(':anon',$anon); $stmt->bindParam(':forumid',$forumid); $stmt->bindParam(':forumseo',$fullplace); $stmt->bindParam(':descis',strip_tags($descis)); $stmt->bindParam(':mid',$_SESSION["uid"],PDO::PARAM_INT); $stmt->bindParam(':lastvoteint',$lastvoteint); $stmt->execute(); //print_r($pdodb->errorInfo()); if($forumid > 0){ #$nowis = intval(date("YmdHi")); #$stmt = $pdodb->prepare("UPDATE LOW_PRIORITY forums SET lastactionint=:nowis WHERE ID=:forumid LIMIT 1"); #$stmt->bindParam(':forumid',$forumid); #$stmt->bindParam(':nowis',$nowis); #$stmt->execute(); #subscribeto($forumid); } $stmt = $pdodb->prepare("UPDATE LOW_PRIORITY subscribeto SET newstuff=newstuff+1 WHERE cid=:forumid"); $stmt->bindParam(':forumid',$forumid); $stmt->execute(); */ } } $stmt = $pdodb->prepare("SELECT mainpic,aboutme,nostrnpub,country,bday,tags,bmonth,byear,rstatus,city,fname,username,dblat,dblon,jobdesc,edu,emailis,ffooter,socmedia,cashapp,venmo,favrelay,bitcoin,instagram,twitter,onlyfans,gender,datingact, nostrhash,telegram,kinaddress,children_preference,height,sorientation FROM girls WHERE ID=:sessid"); $stmt->bindParam(':sessid',$_SESSION["uid"],PDO::PARAM_INT); $stmt->execute(); while($i3=$stmt->fetch()) { $aboutme = $i3["aboutme"]; $country = $i3["country"]; $bday = $i3["bday"]; $bmonth = $i3["bmonth"]; $byear = $i3["byear"]; $rstatus = $i3["rstatus"]; $city = $i3["city"]; $fname = $i3["fname"]; $username = $i3["username"]; $mainpic = $i3["mainpic"]; $jobdesc = $i3["jobdesc"]; $dblat = $i3["dblat"]; $dblon = $i3["dblon"]; $edu = $i3["edu"]; $emailis = $i3["emailis"]; $ffooter = $i3["ffooter"]; $socmedia = $i3["socmedia"]; $cashapp = $i3["cashapp"]; $venmo = $i3["venmo"]; $favrelay = $i3["favrelay"]; $bitcoin = $i3["bitcoin"]; $instagram = $i3["instagram"]; $twitter = $i3["twitter"]; $onlyfans = $i3["onlyfans"]; $gender = $i3["gender"]; $datingact = $i3["datingact"]; $nostrnpub = $i3["nostrnpub"]; $tags = $i3["tags"]; $nostrhash = $i3["nostrhash"]; $telegram = $i3["telegram"]; $kinaddress = $i3["kinaddress"]; $currentPreference = $i3["children_preference"]; $currentHeight = $i3["height"]; $sorientationselect = $i3["sorientation"]; } if($nostrnpub == ""){ $key = new Key(); $private_key = $key->generatePrivateKey(); $nostrhash = $private_key; $nostrnpub = $key->getPublicKey($private_key); $nostrnpub = $key->convertPublicKeyToBech32($nostrnpub); } ?>

edit photos | view profile

0){ ?> Edit Profile
edit the following fields
Tell us about you

Birthday:
Children:
Sexual Orientation:
Height:'; echo ''; ?> Your First Name or nickname
username
E-Mail
Relationship Status:
City
Country:
tags which describe your interests (seperate by commas)
Code Wallet Mobile App Address (to activate earnings download getcode.com)
in your code wallet go to account and deposit address. thats your code wallet address. do not enter other things like links or physical addresses