Posts by Josoé Schmidt Braga • 1 point
1 post
-
0
votes5
answers675
viewsA: Why does Netbeans warn you not to access global variables directly?
/* Esta é a maneira correta de se declarar uma superglobal */ $post = filter_input_array(INPUT_POST, FILTER_DEFAULT); $get = filter_input_array(INPUT_GET, FILTER_DEFAULT); /* Esta…