“PHP Self envío” Código de respuesta

Servidor PHP 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
Ramsey1120

PHP Self envío

<?php if (!empty($_POST)): ?>
    Welcome, <?php echo htmlspecialchars($_POST["name"]); ?>!<br>
    Your email is <?php echo htmlspecialchars($_POST["email"]); ?>.<br>
<?php else: ?>
    <form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
        Name: <input type="text" name="name"><br>
        Email: <input type="text" name="email"><br>
        <input type="submit">
    </form>
<?php endif; ?>
Tamer Jarrar

Formulario de auto envío PHP

action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>"
Tamer Jarrar

Respuestas similares a “PHP Self envío”

Preguntas similares a “PHP Self envío”

Más respuestas relacionadas con “PHP Self envío” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código