Hi all,
I have a string which I am 'looking into' to find a certain set of characters, I then want to extract these characters and insert them into the database along with a bunch of other stuff.
This is what I have:
$body2 = $cart;
$str_array = explode("H2T",$body2);
If I try and post $str_array the only data to get posted to the db is the value 'array.' How do I get the values that I have extracted?
Thanks,
G