You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in php 8.1.0 i think alternative can be one of next solution so which one is best practices and why ?
$filterUser = strip_tags(filter_var(htmlspecialchars($_POST['username'], ENT_QUOTES, 'UTF-8'), FILTER_SANITIZE_FULL_SPECIAL_CHARS)); // Work Too
$filterUser = htmlspecialchars((strip_tags($_POST['username'])), ENT_QUOTES, 'UTF-8'); // Work Too
in php 8.1.0 i think alternative can be one of next solution so which one is best practices and why ?
FILTER_SANITIZE_STRING
6 ReferencesSearch
In this file
> Line Number
@ElzeroWebSchool @OsamaElzero
The text was updated successfully, but these errors were encountered: