03-19-2008, 04:54 AM
|
#1 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
Foreach
Just another method I guess :P
PHP Code:
<?php error_reporting(E_ALL); $_GET = array();
$_GET['a'] = "Hello World!";
if ($_GET['a']) { extract($_GET); $t [] = $a; foreach(array_keys($t) As $val) { echo $t[$val]; } } ?>
Instead of $key => $val xD
This can be simplified but I was just having fun. :]
__________________
VillageIdiot can have my babbies ;d
|
|
|
|