the file header is corrupt
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúif( $_POST['nombre'] == "alex" )
{
print "Su nombre es alex. YEAH!";
}else{
print "Su nombre es ".$_POST['nombre'];
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Documento sin título</title>
</head>
<body>
Su nombre es
</body>
</html>
if( $_POST['nombre'] == "alex" )
{
print "Su nombre es alex. YEAH!";
}else{
print "Su nombre es ".$_POST['nombre'];
}
$.post(
'request.php',
{ nombre:"alex" },
function showRequest(Data){
var _Match = Data.match(/<return>.*<\/return>/);
alert("Return request is: " + _Match[1]);
}
);