• 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)
  • Plugin Author Shea Bunge

    (@bungeshea)

    Hi @dm800pvr,

    What sort of snippet are you using? A content snippet, or something else? Can you post a screenshot of the snippet editor page?

Viewing 1 replies (of 1 total)
  • The topic ‘[code_snippet id=5 php] returns spaces and new lines!’ is closed to new replies.