Log in

View Full Version : strip slashes?


sabret00the
04-27-2004, 02:06 PM
i've got this code
eval("\$project_bits .= \"".fetch_template("project_bit",1,0)."\";");


i'm wondering how i manage to strip the slashes without it messing up the code?

:nervous: i aint touched php in ages and trying to get evyerhting to return to me is harder than i anticipated, especially when your knowledge was minimal in the first place.

Xenon
04-27-2004, 02:08 PM
well, to aviod a lot of slashes in eval codes, you should use single quote:

eval('$project_bits .= "' . fetch_template("project_bit", 1, 0) . '";');

sabret00the
04-27-2004, 02:12 PM
it's still printing out the code from the template as this though :(

<smallfont><br /></smallfont><table class=\"tborder\" cellpadding=\"5\" cellspacing=\"1\" border=\"0\" width=\"80%\" align=\"center\">

with all the flashes still in tact.

NTLDR
04-27-2004, 02:15 PM
eval('$project_bits .= "' . fetch_template("project_bit") . '";');

Is probably what you want. The extra params for fetch_template(); arn't usually used unless its one of the phpinclude templates.

sabret00the
04-27-2004, 02:52 PM
worked perfectly, thank you so so much :D

Xenon
04-27-2004, 03:04 PM
ahh, i missunderstood what you wanted then ;)

sabret00the
04-27-2004, 03:44 PM
no problem, it's my fault for not explaining properly :)