B-knotty Posted April 24, 2007 Share Posted April 24, 2007 Someone mentioned to me that both $_GET and $_POST are both types of arrays. Would some be able to tell me exactly how they are arrays or point me to a site on the internet that explains them and similar types to me. I already know how a standard array works from watching the 3d buzz VTM's on them, I just need to find out more information about those types of data structures. Link to comment https://forums.phpfreaks.com/topic/48501-_get-and-_post/ Share on other sites More sharing options...
taith Posted April 24, 2007 Share Posted April 24, 2007 if you have a url... with ?op=asdf and print_r($_GET); it'll show you its an array... same with $_POST... submit data... and print_r($_POST); all arrays are accessed through $var[] <-- []'s Link to comment https://forums.phpfreaks.com/topic/48501-_get-and-_post/#findComment-237231 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.