“Php si $ _post” Código de respuesta

Si post PHP

if($_SERVER['REQUEST_METHOD'] == 'POST') {}
DeBugDeFrontPage

PHP si tiene post

<?php 
if ( have_posts() ) {
	while ( have_posts() ) {
		the_post(); 
		//
		// Post Content here
		//
	} // end while
} // end if
?>
Stormy Scarab

Php si $ _post

if( isset($_POST['fromPerson']) )
{
     $fromPerson = '+from%3A'.$_POST['fromPerson'];
     echo $fromPerson;
}

//Note: This resolves as true even if all $_POST values are empty strings
if (!empty($_POST))
{
    // handle post data
    $fromPerson = '+from%3A'.$_POST['fromPerson'];
    echo $fromPerson;
}
Healthy Hamster

Respuestas similares a “Php si $ _post”

Preguntas similares a “Php si $ _post”

Más respuestas relacionadas con “Php si $ _post” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código