Advertisement
Shad0w

Untitled

Sep 24th, 2011
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.33 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Image Clicking</title>
  4.     </head>
  5.         <body>
  6.         <form action="" method="post">
  7.             Data: <input type="text" name="data" />
  8.             <br />
  9.             <input type="image" src="Menu_05.png" name="image">
  10.         </form>
  11.         <?php
  12.         if(isset($_POST["image"]))
  13.         {
  14.             print htmlspecialchars($_POST["data"]);
  15.         }
  16.         ?>
  17.     </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement