Guest User

Untitled

a guest
May 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="<?=base_url();?>js/jquery-1.2.6.min.js" type="text/javascript"></script>
  4. <script type="text/javascript">
  5. function bajar(e){
  6. $.ajax({
  7. type: "POST",
  8. url: "/buscar/busqueda",
  9. data: "elemento=Maria",
  10. success: function(datos){
  11. $("#contenedor").html(datos);
  12. }
  13. });
  14. };
  15. $(document).ready(function(){
  16. $("#busqueda").bind("submit", bajar);
  17. });
  18. </script>
  19. <title><?=$title;?></title>
  20. </head>
  21. <body>
  22. <!--Comentario en HTML -->
  23. <h1><?=$cabecera;?></h1>
  24. <?=form_open(’buscar/busqueda‘,array(’id‘ => ‘busqueda‘));?>
  25. <br/>
  26. <input type="text" name="elemento" value="<?php echo set_value('elemento'); ?>" size="50" />
  27. <input type="submit" id="boton" value="Buscar"/>
  28. <div id="contenedor">
  29.  
  30. <?
  31. if( is_array($users)):
  32. foreach ($users as $row){
  33. echo $row['id'];
  34. }
  35. else:
  36. echo "No results";
  37. endif;
  38. ?>
  39.  
  40. <br/></div><BR/>
  41. Esta pagina cargo en {elapsed_time} segundos.
  42. </body>
  43. </html>
Add Comment
Please, Sign In to add comment