> > if ($var){
> > $tmp = explode("<|>",$vars);
> > for ($i = 0; $i < sizeof($tmp); $i++){
> > $struct[$i] = array();
>
> You really don't need this line...
>
> > $tmp2 = explode("<||>",$tmp[$i]);
> > for ($j = 0; $j < sizeof($tmp2);$j++){
>
> Try assigning $tmp3 = $tmp2[$j] and using $tmp3 below.
>
> Also, var_dumb($tmp3) and see what it is.
It's a string, as it schould be.
>
> > $struct[$i][$j] = explode("<|||>",$tmp2[$j]);
> > }
> > }
> > }
>
The error is still there.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]