Tools, FAQ, Tutorials:
Removing Leading and Trailing Spaces in PHP
How To Remove Leading and Trailing Spaces from User Input Values?
✍: FYIcenter.com
If you are taking input values from users with a Web form, users may enter extra spaces at the beginning and/or the end of the input values. You should always use the trim() function to remove those extra spaces as shown in this PHP script:
<?php
$name = $_REQUEST("name");
$name = trim($name);
# $name is ready to be used...
?>
⇐ Remove Trailing New Line Character in PHP
2016-10-13, ∼3546🔥, 0💬
Popular Posts:
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...