Beppis Posted August 13, 2010 Share Posted August 13, 2010 Hi! How can I get this one right? echo "<iframe src="$row['url'].$rowe['id'];" border="0" framspacing="0" marginheight="0" marginwidth="0" vspace="0" hspace="0" frameborder="0" height="100%" scrolling="yes" width="100%"></iframe>"; Link to comment https://forums.phpfreaks.com/topic/210650-get-this-one-right/ Share on other sites More sharing options...
qwasyx Posted August 13, 2010 Share Posted August 13, 2010 echo "<iframe src="$row['url'].$rowe['id']." border='0' framspacing='0' marginheight='0' marginwidth='0' vspace='0' hspace='0' frameborder='0' height='100%' scrolling='yes' width='100%'></iframe>"; or echo "<iframe src="$row['url'].$rowe['id']." border=\"0\" framspacing=\"0\" marginheight=\"0\" marginwidth=\"0\" vspace=\"0\" hspace=\"0\" frameborder=\"0\" height=\"100%\" scrolling=\"yes\" width=\"100%\"></iframe>"; Link to comment https://forums.phpfreaks.com/topic/210650-get-this-one-right/#findComment-1098878 Share on other sites More sharing options...
isedeasy Posted August 13, 2010 Share Posted August 13, 2010 echo '<iframe src="'.$row['url'].$rowe['id'].'" border="0" framspacing="0" marginheight="0" marginwidth="0" vspace="0" hspace="0" frameborder="0" height="100%" scrolling="yes" width="100%"></iframe>'; Link to comment https://forums.phpfreaks.com/topic/210650-get-this-one-right/#findComment-1098879 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.