pero si mando esto
¿que es lo que estoy mandando?
undefined,null, o cero
como funciona esto en lenguajes diferentes
uno es php y el otro es javascript
Código PHP:
Ver original<!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=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="t.php" method="get">
<input name="e" type="text" />
<input name="" type="submit" />
</form>
<?php
$que_valor_mande = $_GET['e'];
echo $que_valor_mande;
?>
</body>
</html>
Código Javascript
:
Ver original<!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=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input id="ca" type="text" value="" />
<input name="" type="button" onclick="a()" />
</form>
<script type="text/javascript">
function a(){
alert(document.getElementById('ca').value);
}
</script>
</body>
</html>