denizen Posted March 3, 2009 Share Posted March 3, 2009 I have done the project in php in which after submits the switch case has been checked as switch($submits) in xampp server it cannot check the submits by itself. it can take $_post('$submits') but in another server it can run without $_post . i have done register global to be on also then also there is problem can anybody help me Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted March 3, 2009 Share Posted March 3, 2009 Register_globals were turned off by default in php4.2 in the year 2002 because of the huge security problem they created by allowing hackers to set session variables. Register_globals have been completely removed in php6. Don't write code that uses register_globals or you will have a rude surprise when you have to rewrite it to get it to work under php6. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.