diff options
| author | root | 2014-02-16 18:37:41 +0100 |
|---|---|---|
| committer | root | 2014-02-16 18:37:41 +0100 |
| commit | 597687afcd781d9803be847ff96ae6c66cf7b273 (patch) | |
| tree | a33c0e9a03231ce97a04097b41feed0a4a006e96 /www/index.php | |
| parent | 0d8971620ae896d25afa5f04467c96c57dcd8537 (diff) | |
| download | files.iamfabulous.de-597687afcd781d9803be847ff96ae6c66cf7b273.tar.gz | |
fixed for()
Diffstat (limited to 'www/index.php')
| -rw-r--r-- | www/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/index.php b/www/index.php index b70121c..91f7e4d 100644 --- a/www/index.php +++ b/www/index.php @@ -20,16 +20,16 @@ if(empty($_GET)){ $i = 0; foreach ($_GET as $name => $value) { //value leer? $args[$i] = $name; - echo 'Name: ' . $name . ' Value: ' . $value . '<br />'; +// echo 'Name: ' . $name . ' Value: ' . $value . '<br />'; $i++; } $length = count($args); for ($i=0;$i<$length;$i++){ - echo $args[$i]; + echo "$args[$i] <br>"; } - echo "Ende"; + echo "<br><br>Ende"; #header("Refresh: 0; /login"); |
