Just another quick note vb3 seems to favor the values true or false over 1 or 0. In php files they like to set the variable being determined.
ie: $chk['thissetting'] in the template would look like this:
PHP Code:
<if condition="$chk['thissetting']">
html data here
</if>
while in the php the $chk['thissetting'] would be assigned either true of false.
PHP Code:
$chk['thissetting'] = false ;
if ( condition here ) :
$chk['thissetting'] = true ;
endif ;
Just something I noticed.
Regards,
g-force2k2