Jump to content

Images as links


OriginalSunny

Recommended Posts

Hi,
I am trying to get a picture as my link to another page in php. The thing is when the user will click on the picture a query should also be performed. I am currently using the following code for the user to select an option and the queryto be performed:

FIRST PAGE(Catalog.inc)
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>";
}
echo "<p><input type='submit' name='Products'
value='Select Category'>\n

SECOND PAGE(Catalog.php)
$sql_cat = "SELECT DISTINCT class FROM food
ORDER BY class";
$result = mysql_query($sql_cat,$connect)
or die("sql_cat: ".mysql_error($connect));
while($row = mysql_fetch_array($result))
{
$food_categories[$row['type']][]=$row['class'];
}
include("catalog.inc");

As you can see a list of the class variables is displayed when the user clicks on the select category button. Now how do i use a picture instead?? I have stored the picture in my food database as foodpic. I am aware i will probably need to change code on both pages.
Thanks.
Link to comment
Share on other sites

[!--quoteo(post=356400:date=Mar 19 2006, 07:55 AM:name=tjhilder)--][div class=\'quotetop\']QUOTE(tjhilder @ Mar 19 2006, 07:55 AM) [snapback]356400[/snapback][/div][div class=\'quotemain\'][!--quotec--]
basicly you'd need something like..

<a href=\"$row['food_link']\"><img src=\"$row['foodpic']\"></a>
[/quote]



What do you mean by [b]food_link[/b]??
Link to comment
Share on other sites

[!--quoteo(post=356400:date=Mar 19 2006, 07:55 AM:name=tjhilder)--][div class=\'quotetop\']QUOTE(tjhilder @ Mar 19 2006, 07:55 AM) [snapback]356400[/snapback][/div][div class=\'quotemain\'][!--quotec--]
basicly you'd need something like..

<a href=\"$row['food_link']\"><img src=\"$row['foodpic']\"></a>
[/quote]



What do you mean by [b]food_link[/b]??
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.