hiya!
when setting the gloabl variables inside a function i.e.
function whatever() { global
}
if $POST is regiestered, would that automatically register all the $POST["id"], $_POST["id1"] etc....?
Actually, $_POST is a superglobal array, you do not need to declare it global within functions.
But yes, declaring an array global should mean that its elements are global as well.