Guest User

Untitled

a guest
Oct 18th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <form action="" method="post">
  2. Name: <br><input name="example" type="text" /><br>
  3. <input name="submit" type="submit" />
  4. </form>
  5.  
  6. <?php
  7. if (isset($_POST['submit'])) {
  8. $example = $_REQUEST['example'];
  9. $result = $customcontact->lookupByName($example); /** API PHP Library */
  10. print_r($result);
  11. }
  12. ?>
Add Comment
Please, Sign In to add comment