Hi
I need to print below array in the following manner.
Output would be:
Property Name: 1
Property Address: 1
Price: 1
Property Size: 1
URL 1
Property Name: 2
Property Address: 2
Price: 2
Property Size: 2
URL 2
Here is array:
Please let me know, how would be this possible?
I need to print below array in the following manner.
Output would be:
Property Name: 1
Property Address: 1
Price: 1
Property Size: 1
URL 1
Property Name: 2
Property Address: 2
Price: 2
Property Size: 2
URL 2
Here is array:
Code:
Array
(
[temp_property_name] => Array
(
[0] => Property Name: 1
[1] => Property Name: 2
)
[temp_property_add] => Array
(
[0] => Property Address: 1
[1] => Property Address: 2
)
[temp_property_price] => Array
(
[0] => Price: 1
[1] => Price: 2
)
[temp_property_size] => Array
(
[0] => Property Size: 1
[1] => Property Size: 2
)
[temp_property_detail] => Array
(
[0] => URL 1
[1] => URL 2
)
)
Comment