Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7. <h1 style="text-align:center;">Sample Form</h1>
  8. <?php
  9. $part = $_GET['part'];
  10. $email = $_GET['email'];
  11. echo  "<iframe
  12.      id='JotFormTest'
  13.      onload='window.parent.scrollTo(0,0)'
  14.      allowtransparency='true'
  15.      allowfullscreen='true'
  16.      allow='geolocation; microphone; camera'
  17.      src='https://form.jotform.com/Mike_G/Part$part?email=$email'
  18.      frameborder='0'
  19.      style='width: 1px;
  20.      min-width: 100%;
  21.      height:539px;
  22.      border:none;'
  23.      scrolling='no'
  24.    >
  25.     </iframe>"
  26.       ;
  27. ?>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement