<form ....> <input type="hidden" name="tot[hello]" value="PRINT"> <input type="submit" value="submit" name="submit"> </form>
<? echo $tot['hello']; ?>
Any reason why this won't echo PRINT when ran? New server, and it sucks.
You might find that the register_globals directive is set to off.
This assumes you are using the GET method, if not change it to $_POST.
Do a print_r( $_GET ) to see what is being sent.
You can get the variables using extract( $_GET )
HalfaBee