Código HTML:
<html> <head> <title>Ajax: Ejemplo 2 - Envío de datos por el método GET</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <script language="javascript"> function nuevoAjax(){ var xmlhttp=false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { xmlhttp = false; } } if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp = new XMLHttpRequest(); } return xmlhttp; } function cargarContenido(){ var t1, t2, contenedor; contenedor = document.getElementById('contenedor'); t1 = document.getElementById('texto1').value; t2 = document.getElementById('texto2').value; ajax=nuevoAjax(); ajax.open("GET", "ejemploajax2.php?t1="+t1+"&t2="+t2,true); ajax.onreadystatechange=function() { if (ajax.readyState==4) { contenedor.innerHTML = ajax.responseText } } ajax.send(null) } </script> <style type="text/css"> #contenedor{ border: 1px solid #f00; padding: 10px; margin: 14px; } </style> <body> <form onSubmit="cargarContenido(); return false"> <div><input type="text" id="texto1" value="valor1" /></div> <div><input type="text" id="texto2" value="valor2" /></div> <div><input type="submit" value="enviar" onPress="cargarContenido()" /></div> </form> Este ejemplo enviará información por el método get y la pondrá en el siguiente div: <div id="contenedor">div contenedor</div> </body> </html>
Código PHP:
<?php
echo "Datos en GET: <pre>";
print_r($_GET);
echo "</pre>";
echo "Datos en POST: <pre>";
print_r($_POST);
echo "</pre>";
?>
"; print_r($_GET); echo ""; echo "Datos en POST:
";
print_r($_POST);
echo "
"; ?>
por favor si alguien sabe que debo hacer por favor ayudeme...gracias