Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <?php
  2. $html = <<<HTML
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  4. <html>
  5.     <head>
  6.       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7.       <title>Table de multiplication</title>
  8.     </head>
  9.     <body> 
  10. HTML;
  11.  
  12. $html.="<form name='Formu' action='listebis.php' method='GET'>"
  13. $html.="<select name='jour[]' multiple>"
  14. $joursem=array("Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi") ;
  15.     foreach($tab as $cle => $v)
  16.     {
  17.         $html .= "<option value=" . $cle . ">" ."$v"."\n" ;
  18.     }
  19.  
  20.  
  21. $html .= <<<HTML
  22.     </form>
  23.     </body>
  24. </html>
  25. HTML;
  26. echo $html ;
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement