“php se soumettre” Réponses codées

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
Ramsey1120

php se soumettre

<?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

Formulaire de soumission auto

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

Réponses similaires à “php se soumettre”

Questions similaires à “php se soumettre”

Plus de réponses similaires à “php se soumettre” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code