From: Sw Jiten on
Hi webmates:

I need to enable/disable some combobox depending on some values that I extract from a database.... how do I achieve it ? thanks in advance...
From: Murray *ACE* on
<select<?php echo $somevariable?' disabled=disabled':''; ?>>
.....
</select>

This shows a PHP solution - the variable $somevariable is tested and if it's
true, the disabled attribute with a value of 'disabled' is added to the
<select> tag.

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"Sw Jiten" <jiten(a)elmochilero.com> wrote in message
news:g3f9o6$obc$1(a)forums.macromedia.com...
> Hi webmates:
>
> I need to enable/disable some combobox depending on some values that I
> extract from a database.... how do I achieve it ? thanks in advance...