<?
header("Content-type: text/vnd.wap.wml");
echo '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd" >';
echo '<wml>
<card id="id1" title="Mail Sender">
<onevent type="onenterforward">
<refresh>
<setvar name="to" value=""/>
<setvar name="subject" value=""/>
<setvar name="body" value=""/>
</refresh>
</onevent>
<p align="left">
';
if($send==1){
print "<small>The email has been successfully sent to <b>$to</b></small><br/>New Message.<br/> ";
}else{print "New Message.<br/> "; }
print '
<small><b>From:</b></small><br/>
<input name="from" title="von" type="text" value="@"/><br/>
<small><b>To:</b></small><br/>
<input name="to" title="zu" type="text" value="@"/><br/>
<small><b>Subject:</b></small><br/>
<input name="subject" title="subject" type="text" value="(no subject)"/><br/>
<small><b>Mailbody:</b></small><br/>
<input name="body" title="text" type="text" value=""/><br/>';
print '
<small><anchor><b>Send ></b><go href="send.php" method="post">
<postfield name="from" value="$(from)"/>
<postfield name="to" value="$(to)"/>
<postfield name="subject" value="$(subject)"/>
<postfield name="body" value="$(body)"/>
</go></anchor></small>';
print '<small><br/>---<br/><a href="/">HOME</a><br/>(c) wap.gumslone.com
</small></p>
</card>
</wml>
';
?>
can anyone make a send.php file with this code
header("Content-type: text/vnd.wap.wml");
echo '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd" >';
echo '<wml>
<card id="id1" title="Mail Sender">
<onevent type="onenterforward">
<refresh>
<setvar name="to" value=""/>
<setvar name="subject" value=""/>
<setvar name="body" value=""/>
</refresh>
</onevent>
<p align="left">
';
if($send==1){
print "<small>The email has been successfully sent to <b>$to</b></small><br/>New Message.<br/> ";
}else{print "New Message.<br/> "; }
print '
<small><b>From:</b></small><br/>
<input name="from" title="von" type="text" value="@"/><br/>
<small><b>To:</b></small><br/>
<input name="to" title="zu" type="text" value="@"/><br/>
<small><b>Subject:</b></small><br/>
<input name="subject" title="subject" type="text" value="(no subject)"/><br/>
<small><b>Mailbody:</b></small><br/>
<input name="body" title="text" type="text" value=""/><br/>';
print '
<small><anchor><b>Send ></b><go href="send.php" method="post">
<postfield name="from" value="$(from)"/>
<postfield name="to" value="$(to)"/>
<postfield name="subject" value="$(subject)"/>
<postfield name="body" value="$(body)"/>
</go></anchor></small>';
print '<small><br/>---<br/><a href="/">HOME</a><br/>(c) wap.gumslone.com
</small></p>
</card>
</wml>
';
?>
can anyone make a send.php file with this code
Comment