Well i have this www.collide.elementfx.com/dmailer.php
And i have this layout
i have
That aready there...
I want to add
So that it verifys becuase it isnt verfiying can someone modify my layout to make it work like the codes in it...
http://www.phpjabbers.com/phpexample.php << that is the tut
And i have this layout
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>dMAiLER</title>
<style type="text/css">BODY
{
background-color:#336699;
font-size: 11px;
font-family: Verdana, Arial;
color: #000;
margin: 20px;
padding: 0px;
}
h1 { font-family:arial,verdana,sans-serif;font-weight:bold;font-size:30px;color:#000; border-bottom:1px solid #000; }
h2 { font-family:arial,verdana,sans-serif;font-weight:bold;font-size:20px;color:#000; }
TABLE, TR, TD { font-family:Verdana, Arial;font-size: 11px; color:#000 }
a:link, a:visited, a:active { color:#000055 }
a:hover { color:#333377;text-decoration:underline }
.centerbox { margin-right:10%;margin-left:10%;text-align:left }
.warnbox {
border:1px solid #F00;
background: #FFE0E0;
padding:6px;
margin-right:10%;margin-left:10%;text-align:left;
}
.tablepad { background-color:#F5F9FD;padding:6px }
.pformstrip { background-color: #D1DCEB; color:#3A4F6C;font-weight:bold;padding:7px;margin-top:1px;text-align:left }
.pformleftw { background-color: #F5F9FD; padding:6px; margin-top:1px;width:40%; border-top:1px solid #C2CFDF; border-right:1px solid #C2CFDF; }
.pformright { background-color: #F5F9FD; padding:6px; margin-top:1px;border-top:1px solid #C2CFDF; }
.tableborder { border:1px solid #345487;background-color:#FFF; padding:0px; margin:0px; width:100% }
#copy { font-size:10px }
#button { background-color: #4C77B6; color: #FFFFFF; font-family:Verdana, Arial; font-size:11px }
#textinput { background-color: #EEEEEE; color:Ã#000000; font-family:Verdana, Arial; font-size:10px; width:100% }
#dropdown { background-color: #EEEEEE; color:Ã#000000; font-family:Verdana, Arial; font-size:10px }
#multitext { background-color: #EEEEEE; color:Ã#000000; font-family:Courier, Verdana, Arial; font-size:10px }
#logostrip {
padding: 0px;
margin: 0px;
background: #7AA3D0;
}</style>
</head>
<body>
<table style="border-right: #000 1px solid; border-top: #000 1px solid; border-left: #000 1px solid; border-bottom: #000 1px solid;" cellspacing="0" cellpadding="15" width="750" align="center" bgcolor="#fffff0">
<tbody>
<tr>
<td align="left">
<h1>Welcome to The dMailer</h1>(C) DEREK C</td></tr></tbody></table>
<br><a name="changes"></a>
<table style="border-right: #000 1px solid; border-top: #000 1px solid; border-left: #000 1px solid; border-bottom: #000 1px solid;" cellspacing="0" cellpadding="15" width="750" align="center" bgcolor="#fffff0">
<tbody>
<tr>
<td align="left">
<h2><?php
if ($_POST['submit']) {
$header = 'From: '. $_POST['from'];
mail($_POST['to'], $_POST['subject'], $_POST['body'], $header);
echo 'Thank you! Your email has been sent and your ip <!--#echo var="REMOTE_ADDR" --> has been logged and stored. =) Have fun Dont jack my work...';
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<div>
To: <input type="text" name="to" value="">
<br>
Subject: <input type="text" name="subject" value="" />
<br>
Message: <textarea name="body"></textarea>
<br>
From: <input type="text" name="from" value="">
<br>
Enter Code: <img src="captcha.php"><input type="text" name="vercode" /><br>
<input type="submit" name="submit" value="Send dMAiL">
</div>
</form> </div></form></h2></td></tr></tbody></table>
<br>
<table style="border-right: #000 1px solid; border-top: #000 1px solid; border-left: #000 1px solid; border-bottom: #000 1px solid;" cellspacing="0" cellpadding="15" width="750" align="center" bgcolor="#fffff0">
<tbody>
<tr>
<td align="left">
<h2>Please Do not JOCK My work... (C) DEREK CHAI
<br></h2>
<ul> </ul></td></tr></tbody></table>
</body>
</html>
i have
Code:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
That aready there...
I want to add
Code:
<form action="submit.php" method="post">
http://www.phpjabbers.com/phpexample.php << that is the tut
Last edited: