Posted by Sidonath on 04/16/06 17:54
$value = $_POST['realname' . $x];
and
$value = $_POST["realname$x"];
should both work if $x is alphanumeric character [a-zA-Z0-9_]. If $x
contains dot '.' you need to replace it with underscore '_' (e.g.
result of image map).
If this doesn't help, post a bit more code and examples
Cheers
[Back to original message]
|