Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Kinda pointless project
Well, i need help with a thing here:
Im making a little code here to list all supplied GET vars, althou i need some regex to remove some chars i dont want also need something that can place all data in an array
Source Code:
ob_start();
print_r($_GET);
$postdata = ob_get_clean();
$postdata = eregi_replace("Array", "", $postdata);
$postdata = eregi_replace(">", "", $postdata);
Thx in advance
Okay sorry, i was in a hurry :/
Okay so what i get now if i post it like: get.php?page=hi&?hi=hell is:
( [page] = hi [hi] = hello )
and i want to delete the ( and ) also i want the values to be like:
page = hi instead of [page] = hi
The goal with this project is that i want to make a form 2 get script…
Don't ask me why xD
Should help you.