/ Published in: PHP
Codigo invocado desde el cliente por el elemento XMLHttpRequest, devuelve codigo en html.
guardalo como php_server.php
guardalo como php_server.php
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php echo "<table border='10' cellpadding='2' cellspacing='2'>"; echo "<body>"; for($i=0;$i<10;$i++) { echo "<tr>"; for($j=0;$j<10;$j++) { echo "<td>"; echo $_POST["nombre"]; echo "</td>"; } echo "</tr>"; } echo "</body>"; echo "</table>" ?>