Answers for "meaning of <?php echo $_server['php_self']?>""

PHP
7

php server self

<form action="<?php echo $_SERVER['PHP_SELF']; ?>"> 
//there is no reason to use this to submit form data to the same page
<form action=""> 
//will do the same thing
Posted by: Guest on February-11-2020
0

action="<?php echo $_server['PHP_SELF'] ?>"

echo '<form name="PArtifact" method="post" action="' . htmlspecialchars($_SERVER["PHP_SELF"]) . '"></form>';
Posted by: Guest on December-25-2021

Code answers related to "meaning of <?php echo $_server['php_self']?>""

Browse Popular Code Answers by Language