Ask a Question related to Dreamweaver AppDev, Design and Development.
-
acidrain9 #1
dynamic image
hey everyone just a quick and probably stupid question here.
i have a list of features in my access database that are related to my
products.
i was wondeing if it is possible to show a bullet next to each feature that
has a value and show nothing if the field doesn't have a value.
I was on a differnt site this morning and some dude told me i should just add
the <img src> tag into each feature field that has a value. Now, i know that
this would work. but i know i really don't want to do that.
any ideas??
acidrain9 Guest
-
dynamic image gallery
I'm trying to create a dynamic image gallery that is updated from a database, i managed to create a simple mysql database using phpmy admin, so I... -
Dynamic Image Map (ASP)
Like most product websites all our product info pages are populated using a database and ASP. Now one of the dynamically generated content is an... -
dynamic image map
Based on certain variable in a javascript, can I somehow hide an image map? I can't seem to be able to target the map.....any thoughts? Thanks ,,... -
Dynamic Image?
Who knows how this is done: http://www.danasoft.com/vipersig.jpg As you can see the signature is dynamical, it uses gdlib I assume and php.... -
Dynamic image that can be emailed?
I want to create something on my website that allows the user to arrange image pieces (sort of like a puzzle) and then email the final result to... -
ssosebee #2
Re: dynamic image
Depending on how many items are in your list you could run 'if' statements on
the variable for each list item.
<ul>
<li>Item</li>
<?php if (isset($variable)) { ?><li>Feature</li><?php } ?>
</ul>
The bullet would be supplied by the <li> tags and could be customized by your
CSS. If a variable is unset or has no value or is NULL the if statement would
be false and the list item would not appear. You did not identify a server
language, for php you can use isset or empty to determine if a variable has a
value.[url]http://us2.php.net/manual/en/function.isset.php[/url]
ssosebee Guest



Reply With Quote

