[php] Дина

Viewer

copydownloadembedprintName: Дина
  1. <?php 
  2. $var = '<!DOCTYPE html>
  3. <html>
  4. <head>
  5.         <title>Calc</title>
  6. </head>
  7. <body>
  8.         <input type="text" placeholder="0" name="" id="first">
  9.         <input type="text" placeholder="0" name="" id="second">
  10.         <input type="button" value="+" onclick="plus();" name="">
  11.         <input type="button" value="-" onclick="minus();" name="">
  12.  
  13.  
  14.         <input type="text" placeholder="Result" name="" id="res">
  15.         <script>
  16.                 function plus() {
  17.                         a = document.getElementById(\'first\').value;
  18.                         b = document.getElementById(\'second\').value;
  19.                         c = parseFloat(a)+parseFloat(b);
  20.                         document.getElementById(\'res\').value = c;
  21.                 }
  22.                 function minus() {
  23.                         a = document.getElementById(\'first\').value;
  24.                         b = document.getElementById(\'second\').value;
  25.                         c = parseFloat(a)-parseFloat(b);
  26.                         document.getElementById(\'res\').value = c;
  27.                 }
  28.        
  29.  
  30.         </script>
  31. </body>
  32. </html>
  33. ';

Editor

You can edit this paste and save as new: