Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
  5.         <title>pe6</title>
  6.         <meta name="description" content="leren van php" />
  7.         <meta name="keywords" content="webdesign, php, dbz ,programmeren, komma, spatie, html, xhtml, css, web standards, valid" />
  8.         <meta name="author" content="aymen tijari" />
  9.         <meta name="Revisit-After" content="1 days" />
  10.         <meta http-equiv="Pragma" content="no-cache" />
  11.         <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  12.         <meta http-equiv="Expires" content="-1" />
  13.     </head>
  14. <body>
  15.         <form action="pe6_19_4we4_tijari_aymenopl.php" method="post">
  16.             <p>Naam: <input type="text" name="naam" /> </p>
  17.             <p>Temperatuur celcius: <input type="text" name="celcius" /></p>
  18.             <p>Temperatuur fahrenheit: <input type="text" name="fahr" /></p><br><br>
  19.             <button type="submit">Omrekenen</button>
  20.        
  21.    
  22.         </form>
  23.     <br>
  24.     <?php
  25.         echo"<p><a href=\"index.php\">home</a></p>";
  26.     ?>
  27. </body>
  28. </html>
  29.  
  30.  
  31. <!DOCTYPE html>
  32. <html>
  33.     <head>
  34.         <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
  35.         <title>pe6 oplossing</title>
  36.         <meta name="description" content="leren van php" />
  37.         <meta name="keywords" content="webdesign, php, dbz ,programmeren, komma, spatie, html, xhtml, css, web standards, valid" />
  38.         <meta name="author" content="aymen tijari" />
  39.         <meta name="Revisit-After" content="1 days" />
  40.         <meta http-equiv="Pragma" content="no-cache" />
  41.         <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  42.        <meta http-equiv="Expires" content="-1" />
  43.     </head>
  44. <body>
  45.     <?php
  46.         $naam = $_POST['naam'];
  47.         $celcius = $_POST['celcius'];
  48.         $fahr = $_POST['fahr'];
  49.         $ab = 9/5;
  50.         $omgezfahr = $celcius * $ab;
  51.         $omgezfahr2 = $omgezfahr + 32;
  52.         $omgezcel = $fahr -32;
  53.         $omgezcel2 = $omgezcel / $ab;
  54.         echo "<p>Beste <b>".$naam."</b></p>";
  55.         echo "<p><b>".$fahr."</b> graden fahrenheit omgezet naar celcius is <b>".$omgezcel2."</b></p>";
  56.         echo "<p><b>".$celcius."</b> graden celcius omgezet naar fahrenheit is <b>".$omgezfahr2."</b></p><br><br>";
  57.         echo"<p><a href=\"pe6_19_4we4_tijari_aymen.php\">form</a></p>";
  58.         echo"<p><a href=\"index.php\">home</a></p>";
  59.     ?>
  60.    
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement