$arrayString[] = $element;
echo $arrayString[8]; echo " #8";
echo $arrayString[9]; echo " #9";
I have an array that I can echo the value out to the screen....ok
if I do a: $blah = $arrayString[8];
and take $blah and put it into a MySQL INSERT
I get the word Object Id# in the field i added the '$blah' to not the output
I echoed out to screen.
Can anyone help...? I really appreciate it.