Jump to content

Recommended Posts

Hello,

 

I want the code below to do the following:

 

1.  User enters porn term: go to index.php

2.  User enters non-existent non-porn term: go to search2.php.

 

However, it is going to index.php in both cases.  How come it is not going to search2.php if the user enters a non-existent non-porn term?

 

Thanks in advance,

 

John

 

 

$anymatches=mysql_num_rows($result);
if ($anymatches == 0)
{


function check_porn_terms($input) {
$porn_terms = array("ass", "asshole", "anal", "adult", "arse", "asshat", "a$$", "a$$hole", "arsehole", "analingus", "areola", "asscheek", "asscheeks", "anus", "bitch", "butt", "bastard", "bdsm", "boobs", "breast", "boob", "blowjob", "booty", "butthole", "bum", "buttsex", "biatch", "buttocks", "badonkadonk", "boner", "bonerizers", "bonerizer", "boners", "bums", "breasticles", "bj", "blumpkin", "bootylicious", "buttcheek", "buttcheeks", "bukkake", "bukakke", "bukake", "bukaki", "bunghole", "cunt", "cock", "clit", "clitorus", "cocksucker", "cum", "cumsucker", "cunnilingus", "cheeks", "cooch", "cumshot", "clitoris", "cooter", "coochie", "coochie-pop", "cuntcake", "cunny", "chode", "cameltoe", "cornhole", "dick", "dong", "dildo", "dicksucker", "dumbass", "dickhead", "dominatrix", "defecate", "defecation", "defecating", "erection", "ejaculation", "ejaculate", "fuck", "fuckface", "fucker", "fucked", "fucking", "fuckhole", "fuckhead", "faggot", "fucktard", "feces", "fetish", "femdom", "fellatio", "fellashio", "funbags", "fap", "full-nude", "full-nudity", "fully-nude", "fullynude", "fullnude", "fullnudity", "gangbang", "genitals", "genitalia", "genatalia", "hustler", "hooters", "hooter", "hardon", "hard-on", "handjob", "hand-job", "horny", "hentai", "intercourse", "jackoff", "jizz", "jackass", "jugs", "jiz", "jism", "jizm", "kunt", "kinky", "knockers", "labia", "masturbate", "moron", "mistress", "merde", "minge", "mooseknuckle", "masterbation", "masterbate", "masturbation", "milf", "milfy", "masturbatory", "nude", "naked", "nipple", "nekkid", "nekid", "nique", "niquer", "nookie", "nudity", "nudography", "nudie", "onanism", "orgasm", "orgy", "pussie", "pussy", "porn", "porno", "playbooy", "playboy", "penthous", "penthouse", "perfect 10", "penis", "pornography", "poop", "pedophile", "pedo", "pedophilia", "beastiality", "necrophilia", "necrophile", "coprophilia", "coprophile", "scat", "scatalogical", "erotic", "pervert", "prostitute", "poon", "poontang", "pecker", "purple-headed", "purplehead", "piss", "pron", "pr0n", "pornstar", "porn-star", "queef", "quim", "rectum", "shit", "shitty", "sex", "shitface", "shithead", "shitfuck", "shit-head", "prostitution", "slut", "sodomize", "sodomized", "sodomite", "sodomy", "skank", "$hit", "s & m ", "s& m ", "s &m", "s & m ", "snatch", "schlong", "spooge", "splooge", "scrotum", "sheisse", "shiesse", "semi-nude", "seminude", "striptease", "strip-tease", "shat", "strapon", "strap-on", "sphincter", "tits", "titties", "titsucker", "tittyfuck", "titty-fuck", "tittiefuck", "twat", "tata", "tatas", "ta-ta", "ta-tas", "testicle", "topless", "top-less"); //add terms here

return !preg_match('#\b(' . join('|', array_map('preg_quote', $porn_terms)) . ')\b#i', $input);
}




if(!check_porn_terms($find))
{
   
   session_write_close();
   header("Location:http://www.site.com/index.php");
   exit;
   
   
}
else{
$find = urlencode($find);
session_write_close();
header("Location:http://www.site.com/search2.php?find=$find");
exit;
}
   
}

A little code cleanup.

 

<?php

function check_porn_terms($input)
{
$porn_terms = array("ass", "asshole", "anal", "adult", "arse", "asshat", "a$$", "a$$hole", "arsehole", "analingus", "areola", "asscheek", "asscheeks", "anus", "bitch", "butt", "bastard", "bdsm", "boobs", "breast", "boob", "blowjob", "booty", "butthole", "bum", "buttsex", "biatch", "buttocks", "badonkadonk", "boner", "bonerizers", "bonerizer", "boners", "bums", "breasticles", "bj", "blumpkin", "bootylicious", "buttcheek", "buttcheeks", "bukkake", "bukakke", "bukake", "bukaki", "bunghole", "cunt", "cock", "clit", "clitorus", "cocksucker", "cum", "cumsucker", "cunnilingus", "cheeks", "cooch", "cumshot", "clitoris", "cooter", "coochie", "coochie-pop", "cuntcake", "cunny", "chode", "cameltoe", "cornhole", "dick", "dong", "dildo", "dicksucker", "dumbass", "dickhead", "dominatrix", "defecate", "defecation", "defecating", "erection", "ejaculation", "ejaculate", "fuck", "fuckface", "fucker", "fucked", "fucking", "fuckhole", "fuckhead", "faggot", "fucktard", "feces", "fetish", "femdom", "fellatio", "fellashio", "funbags", "fap", "full-nude", "full-nudity", "fully-nude", "fullynude", "fullnude", "fullnudity", "gangbang", "genitals", "genitalia", "genatalia", "hustler", "hooters", "hooter", "hardon", "hard-on", "handjob", "hand-job", "horny", "hentai", "intercourse", "jackoff", "jizz", "jackass", "jugs", "jiz", "jism", "jizm", "kunt", "kinky", "knockers", "labia", "masturbate", "moron", "mistress", "merde", "minge", "mooseknuckle", "masterbation", "masterbate", "masturbation", "milf", "milfy", "masturbatory", "nude", "naked", "nipple", "nekkid", "nekid", "nique", "niquer", "nookie", "nudity", "nudography", "nudie", "onanism", "orgasm", "orgy", "pussie", "pussy", "porn", "porno", "playbooy", "playboy", "penthous", "penthouse", "perfect 10", "penis", "pornography", "poop", "pedophile", "pedo", "pedophilia", "beastiality", "necrophilia", "necrophile", "coprophilia", "coprophile", "scat", "scatalogical", "erotic", "pervert", "prostitute", "poon", "poontang", "pecker", "purple-headed", "purplehead", "piss", "pron", "pr0n", "pornstar", "porn-star", "queef", "quim", "rectum", "shit", "shitty", "sex", "shitface", "shithead", "shitfuck", "shit-head", "prostitution", "slut", "sodomize", "sodomized", "sodomite", "sodomy", "skank", "$hit", "s & m ", "s& m ", "s &m", "s & m ", "snatch", "schlong", "spooge", "splooge", "scrotum", "sheisse", "shiesse", "semi-nude", "seminude", "striptease", "strip-tease", "shat", "strapon", "strap-on", "sphincter", "tits", "titties", "titsucker", "tittyfuck", "titty-fuck", "tittiefuck", "twat", "tata", "tatas", "ta-ta", "ta-tas", "testicle", "topless", "top-less"); //add terms here

return (in_array($input, $porn_terms)) ? TRUE : FALSE;
}

$anymatches = mysql_num_rows($result);

if ($anymatches == 0)
{
if (!check_porn_terms($find))
{
	session_write_close();
	header("Location:http://www.site.com/index.php");
	exit;
}
else
{
	$find = urlencode($find);
	session_write_close();
	header("Location:http://www.site.com/search2.php?find=$find");
	exit;
} 
}

 

I imagine you have a garbage in / garbage out scenario.  I dont know whats going on in the rest of the code.  I would need to see more to know.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.