I would like to insert PHP variables inside image tag. Can you please help me in writing the code with escape characters
<img src='"Images/"<?$j_$i?>.jpg'/>
I would like to insert PHP variables inside image tag. Can you please help me in writing the code with escape characters
<img src='"Images/"<?$j_$i?>.jpg'/>
You should only use <?php
<img src='Images/<?php echo $j.'_'.$i; ?>.jpg'/>
It's not beautiful,but it's always supported by server
Change this:
<img src='"Images/"<?$j_$i?>.jpg'/>
To:
<img src='Images/.<?php echo $j .'_'. $i;?>.jpg'/>