Advertisement
Guest User

Untitled

a guest
Jun 19th, 2011
2,425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. if (isset($_POST['submit']))
  4. {
  5. $kop = mysql_real_escape_string($_POST['severity']);
  6. }
  7. else
  8. {
  9. // Assuming you keep your html and php together
  10. ?>
  11. <form action="">
  12. severity: <input type="text" name="severity" />
  13. <input type="submit" name="submit" value="Submit" />
  14. </form>
  15.  
  16. <?
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement