[php] Айдана

Viewer

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

Editor

You can edit this paste and save as new:


File Description
  • Айдана
  • Paste Code
  • 22 Jun-2021
  • 872 Bytes
You can Share it: