I need some help, but what I need appears to be either too complex for me or not possible.
I have Dreamweaver CS3 and the Perl support module installed. What I want to do is have it setup so that the perl files can use the syntax highlighting, but I also want them to autocomplete HTML tags like...
Is this correct for php:
if ($var1 && !$var2) { do this }
The part I'm asking about is the exclamation point in front of $var2 -- the if clause is doing this:
if (variable one exists and variable 2 doesn't exist) { do this }
The actual code, if it shows up correctly, is this:
<? if...