How to insert html code inside an array in PHP?
I tried searching on internet but found nothing.
$html = array
('<IFRAME src="http://link1.com" width="1" height="1"
scrolling="auto" frameborder="0"></IFRAME>' ,
'<IFRAME src="http://link2.com" width="1" height="1"
scrolling="auto" frameborder="0"></IFRAME>' ,
'<IFRAME src="http://link3.com" width="1" height="1"
scrolling="auto" frameborder="0"></IFRAME>');
print_r ($html);
When I tried to print_r, there was no result.
print_ronto a web page, the HTML will be interpreted as such ... right-click and view source to make sure ...