Skip to content

Instantly share code, notes, and snippets.

@shohag-cse-knu
Created December 17, 2024 08:42
Show Gist options
  • Save shohag-cse-knu/7f14b901bebbe995866b497123468012 to your computer and use it in GitHub Desktop.
Save shohag-cse-knu/7f14b901bebbe995866b497123468012 to your computer and use it in GitHub Desktop.
Textarea value trimming using PHP before save to database
<?php
echo htmlspecialchars(trim(preg_replace("/\r|\n|\r\n|\r\r/", " ", $input_var)));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment