Get Data with PHP [closed]

Change:

$output .= $slide['slideshow_caption_title'])) $data .=     '<h1 '.$font_style.'>'.$slide['slideshow_caption_title'].'</h1>';

to:

$output .= $slide['slideshow_caption_title'];
$output .= '<h1 '.$font_style.'>'.$slide['slideshow_caption_title'].'</h1>';

and add:

echo $output;

after:

$output .= "</div><!-- end .relThumb -->\n";

Leave a Comment