Forum: PHP Mar 22nd, 2009 |
| Replies: 3 Views: 501 or use the built in method
session_destroy(); |
Forum: PHP Jan 15th, 2008 |
| Replies: 5 Views: 3,033 you dont need str_replace inside str_replace etc etc.
use two arrays
$your_txt = "Hello 'WORLD'";
$txt = array("'", "\"");
$txt_replace = array("\'", "\\\"");
$x=str_replace($txt,... |