Hi, I have a bit of code that generates errays from a form :-
if(!empty($POST['ve'])){
for ($i=0; $i < count($POST['ve']);$i++) {
$veh .= $_POST['ve'][$i] . ":";
}
}
It kicks out what I need as in a result 1:13:14, etc.
I also have this in the code :
$v[1] = "DAVE";
$v[2] = "JENNY";
$v[3] = "JSARAH";
$v[4] = "PHIL";
$v[5] = "HARRY";
In the original bit of code i want it to output the $v value instead of the number but it keeps looking to the first $v no matter what i try?
Any help, greatly appreciated
Regards
Jules