PHP $ _POST Fonction


PHP $ _POST Fonction

En PHP, la variable prédéfinie $ _POST est utilisé pour collecter les valeurs dans un formulaire avec method = "post".

La variable $ _POST

La variable prédéfinie $ _POST est utilisé pour collecter les valeurs d'un formulaire envoyé avec method = "post".
Les informations envoyées à partir d'un formulaire avec la méthode POST est invisible pour les autres et n'a pas de limites sur la quantité d'informations à envoyer.
Note: Toutefois, il ya un 8 Mo max de taille pour la méthode POST, par défaut (peut être changé en définissant le post_max_size dans le fichier php.ini).

Exemple

<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
Lorsque l'utilisateur clique sur le bouton «Soumettre», l'URL ressemblera à ceci:
http://www.w3schools.com/welcome.php
Le "welcome.php" fichier peut maintenant utiliser la variable $ _POST pour recueillir des données de formulaire (les noms des champs de formulaire sera automatiquement les clés du tableau $ _POST):
Welcome <?php echo $_POST["fname"]; ?>!<br />
You are <?php echo $_POST["age"]; ?> years old.


Quand utiliser method = "post"?

Les informations envoyées à partir d'un formulaire avec la méthode POST est invisible pour les autres et n'a pas de limites sur la quantité d'informations à envoyer.
Cependant, parce que les variables ne sont pas affichés dans l'URL, il n'est pas possible de mettre en signet la page.

Le PHP $ variable _REQUEST

La variable prédéfinie $ _REQUEST contient le contenu des deux $ _GET, $ _POST, $ _COOKIE et.
La variable $ _REQUEST peut être utilisé pour recueillir des données de formulaires envoyés à la fois les méthodes GET et POST.

Exemple

Welcome <?php echo $_REQUEST["fname"]; ?>!<br />
You are <?php echo $_REQUEST["age"]; ?> years old.


10 commentaires:

  1. Greetings! Very useful advice within this post!
    It's the little changes that produce the greatest changes. Thanks for sharing!
    hardwood floors installation

    ReplyDelete
  2. Thanks for finally talking about > "PHP $ _POST Fonction" < Loved it!

    my blog post - hardwood flooring

    ReplyDelete
  3. Nice post. I used to be checking continuously this
    weblog and I'm inspired! Very helpful information particularly the remaining part :) I care for such info much. I used to be seeking this certain information for a long time. Thank you and best of luck.

    my blog - toenail fungus treatment

    ReplyDelete
  4. Thank you a bunch for sharing this with all people you really
    understand what you're speaking about! Bookmarked. Kindly additionally seek advice from my site =). We could have a hyperlink alternate agreement among us

    Visit my web blog - nail fungus treatment

    ReplyDelete
  5. I am in fact pleased to glance at this web site posts which
    carries plenty of useful information, thanks for providing such
    information.

    Stop by my site - wood floors
    Also see my site :: hardwood floors

    ReplyDelete
  6. I am actually grateful to the owner of this web site who has shared this fantastic paragraph at here.



    Stop by my webpage: treatment for toenail fungus
    My page :: nail fungus zetaclear

    ReplyDelete
  7. Good way of describing, and pleasant piece of writing to obtain information regarding my presentation focus, which i am going to present in
    school.

    Here is my website ... housekeeper positions

    ReplyDelete
  8. Whats up are using Wordpress for your blog platform?
    I'm new to the blog world but I'm trying to get started and create my own.
    Do you require any html coding expertise to make your own blog?
    Any help would be greatly appreciated!

    Here is my web blog; resume housekeeper

    ReplyDelete
  9. Awesome post.

    Here is my weblog; hair fall solution
    My web page: hair follicle

    ReplyDelete
  10. Hi there, all is going perfectly here and ofcourse every one is sharing facts, that's actually good, keep up writing.
    skin tags

    my site ... st patrick's
    day

    ReplyDelete

HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT