Jump to content

How to add pictures as the links


OriginalSunny

Recommended Posts

Hi,

i am working on designing a webpage. I give a list of options for the user to choose from and then once the user has choosen what they want the products avaliable on the option are displayed. The code i have used is:

foreach($food_categories as $key => $subarray)
{
echo "<h3>$key</h3>";
echo "<ul>";
foreach($subarray as $type)
{
echo "<input type='radio' name='interest'
value='$type'><b>$type</b><br>\n";
}
echo "</ul>";
}

Instead of having the list like this i want the user to be able to choose from a set of pictures. I have stored pictures in my database under the heading "pic". Now how do i change my code to enable me to display pictures which the user can select rather than a list???
Thanks
Link to comment
https://forums.phpfreaks.com/topic/3740-how-to-add-pictures-as-the-links/
Share on other sites

[!--quoteo(post=350181:date=Feb 28 2006, 11:40 AM:name=OriginalSunny)--][div class=\'quotetop\']QUOTE(OriginalSunny @ Feb 28 2006, 11:40 AM) [snapback]350181[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Hi,

i am working on designing a webpage. I give a list of options for the user to choose from and then once the user has choosen what they want the products avaliable on the option are displayed. The code i have used is:

foreach($food_categories as $key => $subarray)
{
echo "<h3>$key</h3>";
echo "<ul>";
foreach($subarray as $type)
{
echo "<input type='radio' name='interest'
value='$type'><b>$type</b><br>\n";
}
echo "</ul>";
}

Instead of having the list like this i want the user to be able to choose from a set of pictures. I have stored pictures in my database under the heading "pic". Now how do i change my code to enable me to display pictures which the user can select rather than a list???
Thanks
[/quote]

[code]
foreach($food_catagories as $key => $subarray)
{
     echo "<img src=\"$food_catagories[$key]['pic']\">";
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.