“formularz postu PHP do siebie” Kod odpowiedzi

Server 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

formularz postu PHP do siebie

// Here is how to post form data to self or to the same page & 
// avoid the PHP_SELF exploits at the same time.
<form name="my_form" method="post"
  action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>"> 
</form>
Geeky Bravo

PHP Self

<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >

Wrong Worm

Formula

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

samodzielnie przesyłać formularz php

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

Odpowiedzi podobne do “formularz postu PHP do siebie”

Pytania podobne do “formularz postu PHP do siebie”

Więcej pokrewnych odpowiedzi na “formularz postu PHP do siebie” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu