geofox

Reporte Popup

May 12th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <script type="text/javascript" src="jquery-1.4.3.min.js"></script>
  5. <script language="javascript">
  6. $( document ).ready( function() {
  7.     $("a[rel='pop-up']").click(function () {
  8.         var caracteristicas = "height=500,width=800,scrollTo,resizable=1,scrollbars=1,location=0";
  9.         nueva=window.open(this.href, 'Popup', caracteristicas);
  10.         return false;
  11.  });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <?php
  17. $carrera=145;
  18. $ciclo=70;
  19.  
  20.  
  21. ?>
  22. <p><a href="reporte_matriculados.php?carrera=<?php echo $carrera;?>&ciclo=<?php echo $ciclo;?>" rel="pop-up">Generar Reporte</a></p>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment