Jump to content

Easy question! Removing slashes and other things in strings you get from forms


zrweber

Recommended Posts

Alright, so I just started picking up PHP again and I have a pretty simple question. I have a html form that takes a string then writes it on another page. My problem is when I use quotations I'll get slashes in them on the page it writes the string on.

 

Is there a way to clean that stuff up?

the reason the slashes are there is because magic quotes is turned on. if you'd like to make your code more portable, check to see if magic quotes is turned on before using stripslashes. one possibility:

 

$field1 = (!empty($_POST['field1']))?$_POST['field1']:'';
if (get_magic_quotes_gpc()) {
      $field1 = stripslashes($field1);
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.