ok danke für den tipp
habe aber folgendes problem. ich will die attribute für die scrollbalken in eine .php datei einfügen. wo müssen die änderungen für die scrollbalken eingebaut werden??? ich will den formmailer in einem frame laden, das nur 240 px breit ist. was muss ich tun damit keine horizontalen scrollleisten erscheinen. kann ich den formmailer in ein tabelle verpacken????
QUELLCODE (formmailer):
<?php
// Your e-mail adress:
$mailto = "test@test.at";
# Maximum size of attachment in bytes:
$max_attach_size = 500000;
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Formmailer</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #000000;
background: #DEDEDE;
margin: 20px;
padding: 0px;
border: 0px;
background-color: #dedede;
}
.caution { color: red; font-weight: bold; }
-->
</style>
</head>
<body><?php
/*if (empty($_POST['form_submitted']))
{
?>
Please fill out the form:</p><?php
}
*/
if (isset($_POST["form_submitted"]))
{
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$text = $_POST['text'];
blablablablablablablablablablablabla (ist nicht der vollständige code!)
}
else
{
if (empty($email)) { ?>
Thank you!
The message has been sent successfully but you didn't specify your e-mail address so I can't reply.</p><?php }
else { ?>
Dankeschön!
Ihre Nachricht wurde erfolgreich versandt.</p>
<?php }
}
?>
</body>
</html>
____________________________________
thanks
D|C .::: DARKCOBALT :::.
|