Please help..
I have very serious issue in HTML form array.
I want to use Code as follows
<input type="text" name="myname[]"> <input type="text" name="myname[]"> <input type="text" name="myname[]">
array of Text elements in HTML and need to be handled in PHP.
To retrieve values via following PHP code
<?php print "<pre>"; print_r($_POST); print "</pre>"; ?>
but this works on one sever but not on other (Please Correct URLs - I used it wrong way to misguide parser to preventing me urls)
Go Here w-ww . shantiwebsolution.com/test.php
Give some input and submit. You will see PHP output
BUT
htt-ps : / / 66.223.111.17:8443/sitepreview/http/together-ware.com/test.php
Give some input and submit. You will not see out put.
Please Advise if any configuration setting are required to be edited.
I have posted complete Code below for above sample urls.
<?php print "<pre>"; print_r($_POST); print "</pre>"; ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <input type="text" name="textfield[]" /> <input type="submit" name="Submit" value="Submit" /> </form> <p> </p> <p><a href="phpinfo.php">Click here to see php info</a></p> </body> </html>


Sign In
Create Account

Back to top









