0) { $_SESSION['status'] = "Username already taken!!"; header("Location: ".$base_url."index.php?action=register"); exit; } $postpassword = md5($postpassword); $insert_user = mysql_query("INSERT into users set username = '$postusername', email = '$postemail', password = '$postpassword', status = '1'"); // User entered, now its time to login $_SESSION['status'] = "You are registered, please login!"; header("Location: ".$base_url."index.php?action=login"); exit; } $includefile = "templates/register.html"; $pagetitle = "Register for an account"; } elseif ($action == "view"){ // If the person is trying to display a specific user's favorites list if (!empty($uid)){ // Time to get the favorites $favorites = display_favorites($base_url,$uid); // Need to get the username really quick $sql_query = "SELECT * from users WHERE id = $uid && status = 1 LIMIT 1"; //store the SQL query in the result variable $result = @mysql_query($sql_query); if(mysql_num_rows($result)) { //output as long as there are still available fields while($row = mysql_fetch_array($result)) { $userfavorite = stripslashes($row['username']); $userfavorites = $row['favorites']; } } $pagetitle = "$userfavorite favorite articles"; $includefile = "templates/displayusernames.html"; } else{ // Get Category of Name $sql_name_query = "SELECT * from names WHERE id = $nid && status = 1 LIMIT 1"; //store the SQL query in the result variable $name_result = @mysql_query($sql_name_query); if(mysql_num_rows($name_result)) { //output as long as there are still available fields while($row = mysql_fetch_array($name_result)) { $babyid = $row['id']; $babyname = stripslashes($row['name']); $babygender = $row['gender']; $babygender = get_gender($babygender); $babycategory = $row['category']; $babydescription = stripslashes($row['description']); //$babydescription = nl2br($babydescription); $babycomments = stripslashes($row['comments']); $babycomments = nl2br($babycomments); $rating = show_rating($babyid); $rating = "
(Rate 1 2 3 4 5)"; // Get Category of Name $sql_query = "SELECT * from categories WHERE id = $babycategory && status = 1 LIMIT 1"; //store the SQL query in the result variable $result = @mysql_query($sql_query); if(mysql_num_rows($result)) { //output as long as there are still available fields while($row = mysql_fetch_array($result)) { $categoryid = $row['id']; $babycategory = stripslashes($row['name']); } } else{ $babycategory = "Unknown"; } // Add a view to the name $add_view = mysql_query("UPDATE names set views=views+1 where id = $nid"); // End adding a view to the name // See if this name is one of the logged in user's favorites if ($_SESSION['loggedin']==1){ $userfavorites = $_SESSION['loggedinuserfavorties']; $babynamefavorite = "*".$babyid."*"; if (strpos($userfavorites,$babynamefavorite)=== false) $favorite = "add to favorites"; else $favorite = "\"Name"; } else{ $favorite = ""; } // } } else{ $babycategory = "Unknown"; $babyname = "Invalid Article Title"; } $includefile = "templates/displayname.html"; $pagetitle = "$babyname"; $pagedescription = "$babyname"; } } elseif ($action == "logout"){ if ($_SESSION['loggedin']!=1){ header("Location: $base_url"); exit; } session_unset(); // unset our sessions session_destroy(); // now destory them and remove them from the users browser $includefile = "main.php"; } elseif ($action == "addtofavs"){ if ($_SESSION['loggedin']!=1){ header("Location: $base_url"); exit; } $userfavorites = $_SESSION['loggedinuserfavorties']; $babynamefavorite = "*".$nid."*"; if (strpos($userfavorites,$babynamefavorite)=== false){ $userfavorites = $userfavorites.$babynamefavorite; $add_Favorite = mysql_query("UPDATE users set favorites = '$userfavorites' where id = '$loggedinuserid'"); $_SESSION['loggedinuserfavorties'] = $userfavorites; } // Now bring them back to the page they were already at header("Location: ".$base_url."article/".$nid."/Added-To-Favorites"); exit; // Bye! } elseif($action == "deletefav"){ if ($_SESSION['loggedin']!=1){ header("Location: $base_url"); exit; } $deletefav = "*".$nid."*"; echo ">".$userfavorites."< "; $userfavorites = $_SESSION['loggedinuserfavorties']; echo ">".$userfavorites."< "; $userfavorites = str_replace($deletefav,"",$userfavorites); echo ">".$userfavorites."< "; $_SESSION['loggedinuserfavorties'] = $userfavorites; $delete_favorite = mysql_query("UPDATE users set favorites = '$userfavorites' where id = '$loggedinuserid'"); $user = clean_text($_SESSION['loggedinuser']); // Now bring them back to the page they were already at //header("Location: ".$base_url."favorite-articles/".$loggedinuserid."/".$user.""); exit; // Bye! } elseif ($action == "rate"){ $rating = addslashes($_GET['r']); $update_rating = mysql_query("UPDATE names set votes=votes+1, points=points+$rating where id=$nid"); $bn = clean_text($bn); header("Location: ".$base_url."article/".$nid."/".$bn.""); exit; } elseif ($action == "addcomment"){ if ($allow_comments == 1){ $nameid = addslashes($_POST['id']); $namecomment = strip_tags(addslashes($_POST['comment'])); $name = $_POST['cname']; $name = clean_text($name); if ($loggedinstatus == 1) $commentuser = $loggedinuserid; else $commentuser = "0"; $commentdate = time(); if (!empty($namecomment)) $insert_comment = mysql_query("INSERT into comments set comment = '$namecomment', name = '$nameid', user = '$commentuser', date = '$commentdate', ip = '$ipaddress'"); header("Location: ".$base_url."article/".$nameid."/".$name.""); exit; } header("Location: $base_url"); exit; } elseif($action == "generate"){ $lastname = $_POST['lastname']; $includefile = "templates/generate.html"; $pagetitle = "Read Random Article"; $pagedescription = "Use our online random article generator"; } elseif($action == "login"){ if ($_SESSION['loggedin']==1){ header("Location: $base_url"); exit; } $postusername = addslashes($_POST['username']); $postpassword = addslashes($_POST['password']); $postpassword = md5($postpassword); if (!empty($postusername) && !empty($postpassword)){ $sql = "SELECT * FROM users WHERE username = '$postusername' AND password = '$postpassword' AND status = '1'"; $result = mysql_query($sql) or die(mysql_error()); $num = mysql_num_rows($result); if ($num != 0) { $_SESSION['loggedin'] = 1; $_SESSION['loggedinuser'] = $postusername; while($row = mysql_fetch_array($result)) { $userid = $row['id']; $favorites = $row['favorites']; } $_SESSION['loggedinuserid'] = $userid; $_SESSION['loggedinuserfavorties'] = $favorites; header("Location: $base_url"); exit; } else { $_SESSION['status'] = "Invalid Username or Password"; header('Location: '.$base_url.'index.php?action=login'); exit(); } } else{ $includefile = "templates/login.html"; $pagetitle = "Login to your account"; $pagedescription = "Login to your account."; } } elseif ($action == "browse"){ // Get the catergory name to put in the title of the page if (!empty($o)){ $catname = get_category($o); $pagetitle = "$catname"; } elseif (!empty($abc)) $pagetitle = " $abc"; else $pagetitle = "Cool Cash Online"; $includefile = "main.php"; $pagedescription = "Find Cool ways to make cash online"; } elseif($action == "submit"){ $sn = addslashes($_POST['sn']); $sm = addslashes($_POST['sm']); $sg = addslashes($_POST['sg']); $so = addslashes($_POST['so']); // Check for duplicate } elseif($action == "page"){ // Get the custom page! $pid = addslashes($_GET['pid']); $sql_page_query = "SELECT * from pages WHERE id = $pid && status = 1 LIMIT 1"; //store the SQL query in the result variable $page_result = @mysql_query($sql_page_query); if(mysql_num_rows($page_result)) { //output as long as there are still available fields while($row = mysql_fetch_array($page_result)) { $custompage = $row['content']; //$custompage = nl2br($custompage); $custompagetitle = $row['title']; $pagetitle = $custompagetitle; $pagedescription = strip_tags($custompage); } } else{ header("Location: $base_url"); exit; } } elseif ($action == "commentform"){ $includefile = "templates/commentform.html"; $pagetitle = "Contact Us"; $pagedescription = "Submit a Comment"; } elseif ($action == "sendcomment"){ $cname = mysql_real_escape_string($_POST['cn']); $cemail = mysql_real_escape_string($_POST['ce']); $csubj = mysql_real_escape_string($_POST['cs']); $csubj2 = "Comment Form Regarding $csubj"; $ctext = mysql_real_escape_string($_POST['cc']); if (empty($cname) || empty($cemail) || empty($csubj) || empty($ctext)){ $_SESSION['cname'] = $cname; $_SESSION['cemail'] = $cemail; $_SESSION['csubj'] = $csubj; $_SESSION['ctext'] = $ctext; $_SESSION['commentstatus'] = "Please fill out all the boxes before submitting."; header("Location: ".$base_url."index.php?action=commentform"); exit; } $to = "$contactemail"; $subject = "$csubj2"; $headers ="Return-Path: $contactemail\r\n"; $headers .= "From: $cname <$cemail>\n"; $headers .= "MIME-Version: 1.0\n"; $headers .= "Content-type: text/html\r\n"; mail($to, $subject, $ctext, $headers); $_SESSION['cname'] = ""; $_SESSION['cemail'] = ""; $_SESSION['csubj'] = ""; $_SESSION['ctext'] = ""; $includefile = "templates/thankyou.html"; $pagetitle = "Comment Sent"; $pagedescription = "Your Comment Has Been Sent"; } elseif ($action == "submitname"){ if (isset($_POST['name']) || isset($_POST['gender']) || isset($_POST['category']) || isset($_POST['meaning'])){ $newname = mysql_real_escape_string($_POST['name']); $newgender = mysql_real_escape_string($_POST['gender']); $newcategory = mysql_real_escape_string($_POST['category']); $newmeaning = mysql_real_escape_string($_POST['meaning']); $newcomments = mysql_real_escape_string($_POST['comments']); if ($newcategory == "#") $newcategory = ""; if (empty($newname) || empty($newgender) || empty($newcategory)){ $_SESSION['newname'] = $newname; $_SESSION['newmeaning'] = $newmeaning; $_SESSION['newcomments'] = $newcomments; $_SESSION['newgender'] = $newgender; $_SESSION['newcategory'] = $newcategory; $_SESSION['submitstatus'] = "Please fill out all the boxes before submitting."; header("Location: ".$base_url."index.php?action=submitname"); exit; } $now = time(); $insert_name = mysql_query("INSERT into names set name = '$newname', gender = '$newgender', category = '$newcategory', comments = '$newcomments', date = '$now', description = '$newmeaning', status = '3'"); $_SESSION['newname'] = ""; $_SESSION['newmeaning'] = ""; $_SESSION['newcomments'] = ""; $_SESSION['newgender'] = ""; $_SESSION['newcategory'] = ""; $_SESSION['submitstatus'] = "Submission received! Thank you!"; } $includefile = "templates/submitform.html"; $pagetitle = "Submit An Article"; $pagedescription = "Submit an Article"; } elseif ($action == "search"){ $includefile = "templates/search.html"; $pagetitle = "Search"; $pagedescription = "Search"; } else{ $includefile = "templates/mainpage.html"; $pagetitle = "Cool Cash Online"; $pagedescription = "Find Cool ways to make cash online"; } if (empty($pagedescription)) $pagedescription = ""; ?> <?=$pagetitle;?>
Categories
 Topics
 


$custompage
"; ?>




 

 

gothic bbw pictures gothic bbw pictures hold gay portland or gay portland or please shemales at smut gremlins shemales at smut gremlins teach missionary sex posistion missionary sex posistion try candid amateur housewives candid amateur housewives level gay marriage graphs gay marriage graphs sail cookie chick cookie chick ready vagina hematoma surgery vagina hematoma surgery heavy horny girles horny girles pull stories camping nudism stories camping nudism apple pale nude redheads pale nude redheads laugh wiki porn wiki porn current digimon manga hentai doujinshi digimon manga hentai doujinshi fine pinkworld milfs pinkworld milfs eat nude bathing nude bathing book scifi masturbation scifi masturbation must breast enhancement hormone pills breast enhancement hormone pills save menstrual sex fetish menstrual sex fetish idea biwabik mn singles biwabik mn singles string shemale archive shemale archive list teen masturbation effects teen masturbation effects such extreme porn video clips extreme porn video clips real nude fitness videos nude fitness videos fill lesbian grind lesbian grind green pen pals 4 teens pen pals 4 teens paper hardcore sleeping girl sex hardcore sleeping girl sex fair group nude pictures group nude pictures forward only emma watson nude only emma watson nude copy realistic cyberskin sex dolls realistic cyberskin sex dolls bit brazil whore brazil whore thousand homemade drunk teen homemade drunk teen do webcam videos girls webcam videos girls brother sample resume counseling sample resume counseling mind girl piss on girl girl piss on girl boy submissives bondage salvage sex submissives bondage salvage sex even online naruto porn games online naruto porn games fun sugar kisses album sugar kisses album enough topless german models topless german models paint punk rock online dating punk rock online dating page erotic masseuse sydney erotic masseuse sydney sea naked grandmas pics naked grandmas pics forest ceramic 5 galllon jugs ceramic 5 galllon jugs friend nude beaches in cancun nude beaches in cancun done naked elmira college girls naked elmira college girls example fullmonty personals fullmonty personals king matuer sluts matuer sluts led law of ueki hentai law of ueki hentai pound engraved love rocks stones engraved love rocks stones score tween girls nude art tween girls nude art give innocent sex mpg innocent sex mpg section young firm naked tits young firm naked tits suit arizona sex crimes attorney arizona sex crimes attorney weather dogging oxford uk dogging oxford uk ear psychology teenage sexuality psychologist psychology teenage sexuality psychologist try cum covered pussy thumb cum covered pussy thumb after straight college men jerk straight college men jerk the tucson sex tucson sex so antique ethnic japanese nudes antique ethnic japanese nudes chord sex gymnist flexable pussy sex gymnist flexable pussy spot wellesley college college closeup wellesley college college closeup solution nude gay men kissing nude gay men kissing east pregnant wife creampie amateur pregnant wife creampie amateur check internship for teens internship for teens too help axapta relationships tables help axapta relationships tables so chinese wives after mao chinese wives after mao led hage cocks hage cocks room pharmagel facial care pharmagel facial care key mature wedding dress styles mature wedding dress styles these nipple fluffer nipple fluffer rock asian porn gallaries asian porn gallaries friend my sister squirts my sister squirts sugar sasuke s first gay sex sasuke s first gay sex watch ellis hennican gay ellis hennican gay correct kristan davis naked pics kristan davis naked pics early bromocriptine erection bromocriptine erection offer trudy proud sex trudy proud sex we kissing the breasts kissing the breasts crease disney sex e cards disney sex e cards system cindarella sex toons cindarella sex toons tail sixties love songs sixties love songs wrong fathers day spanking fathers day spanking speak wendy james creampie wendy james creampie there atlanta strip club websites atlanta strip club websites chance sucking dick movies sucking dick movies several porn on vhs porn on vhs eight bbw nude photos bbw nude photos climb vaginal tightener vaginal tightener pair raoul italian nude raoul italian nude molecule eve laurence xxx eve laurence xxx ring downoad sex clip downoad sex clip offer photoshop nude photoshop nude fish danielle reyes nude danielle reyes nude multiply erect teen tits erect teen tits ever is ginger spice gay is ginger spice gay land rachel garley naked rachel garley naked eye blood spotting after sex blood spotting after sex race porn upskirt free video porn upskirt free video ocean erotic nude couple erotic nude couple difficult teen bbs galleries teen bbs galleries party nude wwe models nude wwe models single hardcore pain hardcore pain stand pee sex movies pee sex movies say melonie stone porn melonie stone porn serve bignaturals littlemidgets bignaturals littlemidgets nine arabian nights sex pic arabian nights sex pic contain chloe s free porn chloe s free porn base alt erotic images alt erotic images for barcelona singles barcelona singles select hot nude girls applegate hot nude girls applegate quotient naked on the rivera naked on the rivera we flipino love movies flipino love movies scale european nudist families european nudist families speed tits britney tits britney person virgins get cherry popped virgins get cherry popped happen womens sex vitamins fl womens sex vitamins fl story the simpsons uncut porn the simpsons uncut porn win dog porn streeam dog porn streeam us object masturbation galleries object masturbation galleries bright breast implant arizona breast implant arizona school teens with shaved hair teens with shaved hair enough stories of sluts stories of sluts meat nude celeb movie fee nude celeb movie fee state vampire soft core porn vampire soft core porn general strap on sissy pics strap on sissy pics mean grandpa sucked my dick grandpa sucked my dick continent renaissance nipple renaissance nipple day home amateur movies home amateur movies catch gmtv porn presenter gmtv porn presenter wrong extreme long dildo ftv extreme long dildo ftv though cumming in my panties cumming in my panties art huge silicon breasts huge silicon breasts born innocent iii agreement denounced innocent iii agreement denounced character newyork city lesbian bars newyork city lesbian bars human sjp lovely sjp lovely result love hershey kisses love hershey kisses inch bre from xlgirls bre from xlgirls winter buck ghost whores buck ghost whores track adult gay chat rooms adult gay chat rooms how facial origin facial origin half gay couples adopting causes gay couples adopting causes city cute shirtless men cute shirtless men moment hillbillie chicks hillbillie chicks song gay teacher porn gay teacher porn market teens german teens german idea hott ebony girls hott ebony girls fast teen carwash cum teen carwash cum sudden australian gay resourses australian gay resourses week hot nude vacation spots hot nude vacation spots be utah gay pride day utah gay pride day read porn for the broke porn for the broke sugar holistic beauty holistic beauty push my love remix supload my love remix supload far fuck my girlfriends mom fuck my girlfriends mom force anabeth gish nude anabeth gish nude machine bukkake and facials bukkake and facials north hanna verboom xxx hanna verboom xxx our sexy bikini tits ass sexy bikini tits ass anger anime demoness nude anime demoness nude stop totally free russian personals totally free russian personals master malay sex underground website malay sex underground website together ebony hot girls ebony hot girls even cute amateur feet cute amateur feet team swing dance club cincinnati swing dance club cincinnati move claire stansfield nude photos claire stansfield nude photos grand lesbian orgies gallery lesbian orgies gallery safe mom lets son fuck mom lets son fuck period nude couples clubs nude couples clubs fell planet katie pussy vid planet katie pussy vid glad julie warner nude julie warner nude dad webcam loyola webcam loyola we nude michelle rodriguez vidcaps nude michelle rodriguez vidcaps since santarelli nude santarelli nude they alex kingston nude alex kingston nude suffix thailand fetish sex thailand fetish sex poem girl underwear ads girl underwear ads pair xxx pitchers xxx pitchers depend small tit petite lesbians small tit petite lesbians death late teens correspond roughly late teens correspond roughly quart 60 70 mpg 60 70 mpg consider gay male master gay male master original sex reviews escorts sex reviews escorts find nude disney toons nude disney toons wait cheerleader whale cock cheerleader whale cock charge sheena gay sheena gay difficult nikki cox naked fake nikki cox naked fake must shower head sex shower head sex does monroe nude picture monroe nude picture led vintage porn movie samples vintage porn movie samples here sex met aziatiche dames sex met aziatiche dames section crossdress fiction caught wife crossdress fiction caught wife choose grand haven callgirls grand haven callgirls until school nude models school nude models grass gay fat men fucking gay fat men fucking again sex girls archery sex girls archery pattern nude sculptures nude sculptures forward handycap sex porn handycap sex porn climb john coulter gay john coulter gay good nasty wife pussy stories nasty wife pussy stories main military masturbation pictures military masturbation pictures condition galleries nude english men galleries nude english men wear breann mcgregor naked breann mcgregor naked are mellisa dettwiller nude pics mellisa dettwiller nude pics gather louis cumming louis cumming law teen guy s wardrobe teen guy s wardrobe locate watch free hentai video watch free hentai video person tara reid naked photo tara reid naked photo science sex cartoon funny sex cartoon funny feed schoolgirl undress schoolgirl undress fit white chicks moviefone white chicks moviefone neighbor horny boy video horny boy video verb japannes pussy japannes pussy fraction sperm viscocity sperm viscocity are sex free hunt sex free hunt mass dan deacon sucks dan deacon sucks trade replacement knobs replacement knobs fall jobs in sex therapy jobs in sex therapy make amateur videaos amateur videaos atom daphne nude pic daphne nude pic is lesbian lick outs lesbian lick outs between school counseling interview school counseling interview love women spanking men vixen women spanking men vixen head are small breasts normal are small breasts normal when spanking thermometer rectum spanking thermometer rectum made girls blow big cocks girls blow big cocks column medical british virgin islands medical british virgin islands jump thousand wives wu ti thousand wives wu ti wife paris hilton nude tape paris hilton nude tape history mommas milk xxx mommas milk xxx human footjob secretary footjob secretary enemy lesbian sexual mafia lesbian sexual mafia race wonderbra plus love knots wonderbra plus love knots done abby winters pussy pics abby winters pussy pics planet christian anderson underwear christian anderson underwear range gay teen sex thumbs gay teen sex thumbs plural cunnilingus picture cunnilingus picture repeat std breast milk std breast milk use installing kitchen cabinet knobs installing kitchen cabinet knobs rose anna kournikova nude video anna kournikova nude video she plus size fetish shoes plus size fetish shoes major flickr nude beach phots flickr nude beach phots oh pornstar utah sweet pornstar utah sweet second flowing cunt flowing cunt home republicans same sex marriage republicans same sex marriage certain roses strip club maryland roses strip club maryland fast cedar mountain swing set cedar mountain swing set tree taurine bull sperm taurine bull sperm we filipino ts handjobs filipino ts handjobs mine sister inlaw sex pics sister inlaw sex pics chance blonde hair colors blonde hair colors brother each pray love reviews each pray love reviews arm horny women in nh horny women in nh hot wemon fucked wemon fucked doctor porn sound effects porn sound effects room ktso naked ktso naked room cumming inside raven cumming inside raven oil sex ballistic beaver sex ballistic beaver use jenny heart fucked jenny heart fucked spot a public spanking a public spanking dog scripts for sex talk scripts for sex talk subtract homade xxx homade xxx in wrestlers bondage humiliation cage wrestlers bondage humiliation cage silver escorts 55101 escorts 55101 miss slut shorts slut shorts be redhead booty redhead booty live mind control porn videos mind control porn videos friend the island sex scene the island sex scene noon fuck video org fuck video org save dp gangbang black dp gangbang black cover skirt long bondage skirt long bondage visit dating woman sda dating woman sda snow sex slang phrases sex slang phrases evening child love photo poster child love photo poster sure escort delhi female independent escort delhi female independent molecule xxx stick shifts xxx stick shifts head fuzzlepop milf fuzzlepop milf began candid camera slit pussy candid camera slit pussy final san andraes sex san andraes sex control vomit girls sex vomit girls sex quite 2 xist male underwear 2 xist male underwear too ass handjob movie ass handjob movie pick girl underwear ads girl underwear ads of clean shave pussy clean shave pussy century angeline jolee porn angeline jolee porn key ameratur redheads plump ameratur redheads plump which love for co worker love for co worker wrote imus sucks imus sucks hold dlg swing on sendspace dlg swing on sendspace nature gay cruise ship gay cruise ship oh suck lees willy suck lees willy neck guildwars hentai guildwars hentai dictionary raleigh nc personals professional raleigh nc personals professional it girls 7 10 pron girls 7 10 pron post pussy sex clip pussy sex clip symbol professor mike xxx professor mike xxx complete platinum plus topless donuts platinum plus topless donuts sure nz sex site review nz sex site review give teens driving habits teens driving habits fair busty model pictures busty model pictures subtract porn banie sitters porn banie sitters nose big black boob anal big black boob anal fight tgp deepthroat tgp deepthroat afraid choke blowjob movies choke blowjob movies base katekyo hitman reborn hentai katekyo hitman reborn hentai done bbw hardcore redheads bbw hardcore redheads thing rh love rh love are chocalate milk juggs chocalate milk juggs suggest famous latin pornstars famous latin pornstars lone tiny tiny boobs tiny tiny boobs planet her nude pics her nude pics element sex video titles taboo sex video titles taboo solution buying cheap Viagra online in uk