Well I have taken up the task of trying to learn this, while working with VB as well, since I am starting up a new website and I don't feel like paying for the scripts.

Anyways, I have learned some basics and had a question. On my webform I am using a Text Area for a user to fill out comments, and it's name is of course "comments". So when it's submitting here is what I am using to process it:

Your comments:<p>
<?php Print $comments; ?>
<p>

And it's simply displaying nothing, why is it doing that?

My Text Area code:

<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA><br>