View Single Post
Join Date: Nov 2007
Posts: 3,760
Reputation: nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough 
Solved Threads: 332
Moderator
Featured Poster
nav33n's Avatar
nav33n nav33n is offline Offline
Senior Poster

Re: whois script not working in IE

 
0
  #6
Jul 15th, 2008
Argh! You are right. Php doesn't like . in the names of form elements. It replaces . by _.
  1. <?php
  2. print_r($_POST);
  3. ?>
  4. <html>
  5. <body>
  6. <form method="post">
  7. <input type="text" name="some.name">
  8. <input type="submit" name="submit.1" value="submit">
  9. </form>
  10. </body>
  11. </html>
Hmm.. strange! Lets see if someone else has an idea !
Ignorance is definitely not bliss!

*PM asking for help will be ignored*
Reply With Quote