Hello
im using PHP 4.0.6 And if(isset($_GET['fee']))
dosnt seem to work. does anyone know how i can do this?
this is what i got
http://url.com/index.php?order=true&18=gum&19=coke
so i want to print the value of 18 & 19
gum & coke/ 🙂
here is my code..
<?php
if ($order){
$count = 0;
$data = file($dbFile);
$total = count($data);
for ($i = 0; $i <= $total; $i++)
{
$wantedLine = $i;
$lineData = $data[$wantedLine];
$lineData = trim($lineData);
$lineData = explode("|", $lineData);
$count++;
echo "gum and coke here?";
}
}
?>