PHP noob question
PHP noob question
Out of context: Reply #2
- Started
- Last post
- 5 Responses
- unfittoprint0
content.php?var1=this&var2=that
and to retrieve the GET vars
foreach ($_GET as $key => $value) {
$$key = $value;
}
content.php?var1=this&var2=that
and to retrieve the GET vars
foreach ($_GET as $key => $value) {
$$key = $value;
}