Hello all,
This one is drving me nuts!
I have a var somthing like this:
$string = "field1:field2:field3";
What I want to do is only print filed1 upto the :. The size of the data in that field changes.
Any ideas!? Thanks,
Rob
$arr = explode(":",$string) and $arr[0] will be the first element...
Thanks!
That did the trick. Well, kinda. I just had to change how I got my data.
Thanks again,