i want an image to link to index.php, how do i do this? example, i have index.php. then i have music.php. i have an image on music.php and when people clicks it, i want it to go to index.php. what is the code for this? thanks.
<a href=index.php><img src=image.gif></a> It is done the same way you would make any other link, just with an image between the tags. Hope that helps.
<a href="index.php"><img src="yourimage.png" border="0"></a> // HTML <?php echo "<a href=index.php><img src=yourimage.png border=0></a>"; ?> // PHP PHP: