I am trying to get two foreach loop by explode with two delimiters <> and "\n" but getting error. Warning: Invalid argument supplied for foreach()
Here is my code
<?php
$specifications = $scooter_meta->get_the_value('specifications');
$titles = explode('<>', $specifications);
$descs = explode("\n", $specifications);
echo '<dl>';
foreach($titles as $title => $descs){
echo '<dt>' . $title . '</dt>';
foreach($descs as $desc){
echo '<dd>' . $desc . '</dd>';
}
}
echo '</dl>';
?>
The value entering into textarea something like this Title here<>this is the first scooter ever made.
Title here 2<>another line for specification In fact I would like to make it like <title 1> here detail text
Thanks a lot
var_dump()the stuff you are trying to use in yourforeachloops and see if they contain what you think they conatin. (hint: probably not) – PeeHaa 埽 Aug 16 '12 at 10:21array(3) { [0]=> string(10) "Title here" [1]=> string(50) "this is the first scooter ever made. Title here 2" [2]=> string(30) "another line for specification" }– pixelngrain Aug 16 '12 at 10:26