Hi,
Strange stripslashes() problem.
I'm using GeSHi to highlight this code... but when I run a stripslashes() on it, it goes wierd like this:
http://www.gotutorials.com/view/?id=1
Any idea why this is?
Oh, my code:
Notice the stripslashes() on the commented line. It changes the quotes into a different style of some sort and it highlights improperly. How can I fix this?
Thanks,
-Matt
Strange stripslashes() problem.
I'm using GeSHi to highlight this code... but when I run a stripslashes() on it, it goes wierd like this:
http://www.gotutorials.com/view/?id=1
Any idea why this is?
Oh, my code:
PHP:
while (strpos($tutorial, ":code.", $i + 1) > 0)
{
$i = strpos($tutorial, ":code.", $i) + 6;
$ii = strpos($tutorial, ":", $i); + 1;
$idnum = substr($tutorial, $i, $ii - $i);
$codetmp = show_code($idnum);
//below is the line with stripslashes.
$tutorial = stripslashes(substr_replace($tutorial, $codetmp, ($i - 6), ($ii + 1) - ($i - 6)));
}
echo($tutorial);
Notice the stripslashes() on the commented line. It changes the quotes into a different style of some sort and it highlights improperly. How can I fix this?
Thanks,
-Matt






