Hello this is my first post here. I am sure that I will visitoften though.
This is probably very trivial but I need help with it.
I have an array like this:
$array = array('data'=>$data, 'data2'=>$data2);
where $data and $data2 are also arrays.
I know that if I use:
echo "<pre>;
print_r($data);
print_r($data2);
it will print out the array, but how do I print it out beautified?
Whatever I try to do it just echos "Array".
I would really appreciate some help with this.
Thank you