Posted by Robert S on 07/06/06 22:07
I am trying to use POST to transfer data to another page. When I do
this, '.' characters get converted to"_". For example:
#index.html:
<form action="test.php" method="post">
<input type="submit" name="filename.txt">
</form>
#test.php
<html>
<?php
var_dump( $_POST );
?>
</html>
This displays:
array(1) { ["filename_txt"]=> string(12) "Submit Query" }
ie 'filename.txt' is changed to 'filename_txt'
How can I stop this behaviour?
[Back to original message]
|