modify.html
<html>
<head><title></title></head>
<body>
<form action="ecard.php">
Choose a card:<br>
<table cellspacing="5">
<tr>
<td><img src="_pathornament.jpg" height="100"><br>
<input type="radio" name="pic"
value="ornament.jpg" checked>ornament</td>
<td><img src="_pathtree.jpg" height="100"><br>
<input type="radio" name="pic"
value="tree.jpg" _checkpic_tree.jpg >tree</td>
<td><img src="_pathIcePalace.jpg" height="100"><br>
<input type="radio" name="pic"
value="IcePalace.jpg" _checkpic_IcePalace.jpg >ice palace</td>
</tr>
<tr>
<td><img src="_pathfirework.jpg" height="100"><br>
<input type="radio" name="pic"
value="firework.jpg" _checkpic_firework.jpg >firework</td>
<td><img src="_pathtrees.jpg" height="100"><br>
<input type="radio" name="pic"
value="trees.jpg" _checkpic_trees.jpg >trees</td>
<td><img src="_pathchristmas.jpg" height="100"><br>
<input type="radio" name="pic"
value="christmas.jpg" _checkpic_christmas.jpg >trees</td>
</tr>
</table>
<p>
<table>
<tr>
<td>To:</td>
<td><input name="to" value="_to"></td>
</tr>
<tr>
<td>From:</td>
<td><input name="from" value="_from"></td>
</tr>
<tr>
<td>Message:</td>
<td><textarea rows="10" name="message">_message</textarea></td>
</tr>
</table>
<br><br>
<input type="submit" name="action_preview" value=" Preview ">
<input type="submit" name="action_send" value=" Send ">
</form>
</body>
</html>
|
![]() see the HTML template "modify.html" |
preview.html
<html>
<head><title></title></head>
<body>
<form method="post" action="ecard.php">
<input type="hidden" name="to" value="_to">
<input type="hidden" name="from" value="_from">
<input type="hidden" name="message" value="_message">
<input type="hidden" name="pic" value="_pic">
<table>
<tr>
<td>Subject:</td>
<td>_subject</td>
</tr>
<tr>
<td>To:</td>
<td>_to</td>
</tr>
<tr>
<td colspan="2">
<img name="pic" src="_fullpath_pic"><br>
_message_display</td>
</tr>
</table>
<p>
<input type=submit name="action_modify" value=" Modify ">
<input type=submit name="action_send" value=" Send ">
</form>
<p>
<a href="ecard.php">send another</a>
</body>
</html>
|
![]() see the HTML template "preview.html" |
send.html
<html>
<head><title></title></head>
<body>
Ecard has been sent to _to.
<p>
<a href="ecard.php">send another</a>
</body>
</html>
|
![]() see the HTML template "send.html" |
mail.html
<img name="pic" src="_fullpath_pic"><br>
_message_display
|
(content of email) |