ok, basic form:
- Code: Select all
<Table><TR><TD>
<FORM action="AddNewLink.php" name="NewLink" method=post></TD></TR>
<TR><TD>Link Title:</TD></TR><TR><TD>
<INPUT name=txtTitle type="text" class="cssborder"></TD></TR>
<TR><TD>URL:</TD></TR><TR><TD>
<INPUT name=txtUrl type="text" class="cssborder" value="http://localhost/"></TD></TR>
<TR><TD>Description:</TD></TR><TR><TD>
<TEXTAREA name=txtLinkDesc rows=3 cols=50 class="cssborder"></TEXTAREA></TD></TR>
<TR><TD>
<INPUT type="submit"></TD></TR>
</FORM>
</TABLE>
calls AddNewLink.
php page..
now what?
I guess I just want to know how I can use the info from the form - assign it to variables, then I can use them for what I want. I'm learning...