I am writing what I did wrong so others can see and learn.

here is my code I sent out earlier.

As you can see from the code I had it backwards. If custom was chosen on
the web page I wanted it to use a custom color by way of hex code.


However my code tells the program if custom is chosen use $textcolor which
is returning the word custom therefore making my text tag in my body tag
look like:

<body text="custom"> Instead of <body text="#BE9292">


>if($textcolor eq "custom")
>         {
>     print " text=\"$textcolor\"";
>         }
>else{
>     print " text=\"$txtcustom\"";
>    }


The correct code is as follows:

if($textcolor eq "custom")
        {
    print " text=\"$txtcustom\"";
        }
else{
    print " text=\"$textcolor\"";
   }     


I didn't find this until I worked it out step by step on paper. <--- I was
taught this by a guru. I should have listened. LOL.

But Thanks for the help anyways guys and gals:-)

Mark


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to