[code_snippet id=5 php] returns spaces and new lines!
-
Hi, I’m using post command but in redirected page for ex string email will receive as ” [email protected] ” with spaces and or new lines when I activate paragraph how to avoid this and remove it? is it a bug in plugin?
<?php $email = htmlspecialchars(strstr($_GET['email'], '@', true)); $email = trim(preg_replace('/[^a-zA-Z0-9]+/', '', $email)); $email = str_replace(' ', '', $email); if(isset($email)) echo $email; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[code_snippet id=5 php] returns spaces and new lines!’ is closed to new replies.