Hello,
index.php
<?php /*
<img src="images/indonusa banner1.jpg" width="900px"/>
<img src="images/indonusa banner2.jpg" width="900px"/>
<img src="images/indonusa banner3.jpg" width="900px"/>
*/ ?>
<?php
include('include/con_database.php');
$result2 = mysql_query("SELECT * FROM dynamic_content WHERE CatID='11' LIMIT 3");
while ($data2 = mysql_fetch_array($result2)){
echo '<td>'.'<img src="images/banner/'.$data2['images'].'" width="900px">'.'</td>';
}
?>
In the following code:
while ($data2 = mysql_fetch_array($result2)){
echo '<td>'.'<img src="images/banner/'.$data2['images'].'" width="900px">'.'</td>';
?>
Is it possible to print the text out such as :
"<img src="images/banner/image1.jpg" width="900px">"
"<img src="images/banner/image2.jpg" width="900px">"
"<img src="images/banner/image3.jpg" width="900px">"
Instead of showing the pictures?
Thanks in advance.