Jônata Tyska Carvalho wrote:
Im having a big problem because the name of one input type text that is '
table.name' in my html, becomes 'table_name' in php, it is a kind of bug??
=S

<form method="post">
<input type="text" name"table.name">
</form>

in PHP we have:

$_POST["table_name"] instead of $_POST["table.name"]

someone knows some way to put this to work?? i wanna send 'table.name' and
receive in php 'table.name'!

I don't know for certain but that's likely happening because a period is not valid in a PHP variable name. One alternative would be to use table[name] instead. This will lead to $_POST['table']['name'].

-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to