PikaKiller Posted June 21, 2006 Share Posted June 21, 2006 I really cant figure out this [code]$nletter=$_POST['post'];$subject=$_POST['subject'];$nletter=stripslashes($nletter);$subject=stripslashes($subject);[/code]It really doesnt work at all and i have tried to figure it out but does not work. Can you help? Quote Link to comment https://forums.phpfreaks.com/topic/12514-how-to-stop-rn-help/ Share on other sites More sharing options...
gfX Posted June 21, 2006 Share Posted June 21, 2006 Try:[code]$nletter = stripslashes($_POST['post']);$nsubject = stripslashes($_POST['subject']);[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12514-how-to-stop-rn-help/#findComment-47934 Share on other sites More sharing options...
zq29 Posted June 21, 2006 Share Posted June 21, 2006 [!--quoteo(post=386290:date=Jun 21 2006, 06:22 AM:name=PikaKiller)--][div class=\'quotetop\']QUOTE(PikaKiller @ Jun 21 2006, 06:22 AM) [snapback]386290[/snapback][/div][div class=\'quotemain\'][!--quotec--]It really doesnt work at all and i have tried to figure it out but does not work. Can you help?[/quote]What is it (not) doing, and what are you expecting it to do? Quote Link to comment https://forums.phpfreaks.com/topic/12514-how-to-stop-rn-help/#findComment-47938 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.