jiahuo xiao wrote: ><?phpinfo();?>,it show many tables,it means I config >correctly.but why when I post pamameter to an action >page,all the pamaeter which I get is blank that is >"".so the action page run incorrectly,how could I do? > thank you for replying me >
It sounds as though you have register_globals off in php.ini. Either turn it on, or better still, get at your variables on your action page with $GET['var'] for get method or $POST['var'] for post variables. Look this up in the fine manual. HTH Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php