I can't seem to get the following to work:
My end goal is to try to turn an array into a multidimensional array. Say I have an arrayPHP Code:<?php
$ar[0][0]="mess";
echo"$ar[0][0]";
?>
$ar=array(me ss, w e, as df, e d);
I want to explode it into a multidimensional array where $ar[0][0]=me and $ar[0][1]=ss.
Any ideas on these two problems?



Reply With Quote

Bookmarks