Code: Show/Hide <tr>
<td width="16%" height="22"> <b><font face="Verdana" size="1">Album:</font></b></td> <td width="84%" height="22"> <font face="Verdana" size="1"><b> <input type="text" name"cdtitle" size="34" value=""></b></font></td> </tr> |
Code: Show/Hide <?php
$title = $_POST['title']; $artist = $_POST['artist']; $cdtitle = $_POST['cdtitle']; $body = $_POST['body']; $note = $_POST['note']; $email = $_POST['email']; mail( "my e-mail", "Lyrics", "Title: $title; Artist: $artist; Album: $cdtitle; Lyrics: $body; Comments: $note", "From: $email" ); ?> |
Contempt+ wrote: | |
|
Contempt+ wrote: |
Ok, but what I don't understand, is that I don't have the = sign for any of the other names, and it works. |
Code: Show/Hide <tr>
<td width="16%" height="22"> <b><font face="Verdana" size="1">Album:</font></b></td> <td width="84%" height="22"> <font face="Verdana" size="1"><b> <input type="text" name="cdtitle" size="34" value=""></b></font></td> </tr> |