View Single Post
Old 06-21-2002, 06:51 PM   PM User | #2
SYP}{ER
Regular Coder

 
Join Date: Jun 2002
Location: Ontario, Canada
Posts: 183
Thanks: 0
Thanked 0 Times in 0 Posts
SYP}{ER is an unknown quantity at this point
PHP Code:
if (strstr ($string_to_search"'")!=false){
  
//Yup, they typed it.
}else{
  
//Nope, they didn't type it.

Note that if you're trying to comment them out, you can use
PHP Code:
addslashes() 
or to remove the slashes, you can use
PHP Code:
stripslashes() 
__________________
Offtone.com - In the works...
SYP}{ER is offline   Reply With Quote