“Obtenha postagem no PHP” Respostas de código

Post PHP

<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
  Name: <input type="text" name="fname">
  <input type="submit">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
  // do logic
  $name = $_POST['fname'];
}
?>
Andrew Lautenbach

Obtenha pós php

<?php
var = $_POST['var'];
echo var;
  
// YOUR METHOD IN HTML MUST BE IN POST

<form method="post">
	<input type="text" name="var">  
</form>
L'homme habile

Obtenha postagem no PHP

$data = json_decode(file_get_contents('php://input'), true);

// you have all in an array
L'homme habile

PHP Get

<form action="/" method="get">
  <input type="text" name="name">
  <br>
  <input type="submit">
</form>
<?php
  echo $_GET["query"];
?>
hateschoollovecoding

Respostas semelhantes a “Obtenha postagem no PHP”

Perguntas semelhantes a “Obtenha postagem no PHP”

Mais respostas relacionadas para “Obtenha postagem no PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código