[ create a new paste ] login | about

Link: http://codepad.org/81ddgzH9    [ raw code | output | fork ]

PHP, pasted on Feb 7:
1
2
3
4
5
6
7
8
9
10
11
<?php

$yourPostVariable = "scor\"pi'on";

//$name = str_replace(array("'", "\""), "", htmlspecialchars($yourPostVariable ) );

$name = str_replace(array("'", "\"", "&quot;"), "", htmlspecialchars($yourPostVariable ) );

echo $name ;

?>


Output:
1
scorpion


Create a new paste based on this one


Comments: