• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

keine ahnung :(

huersch

New member
Also mein tolles emailscript will irgentwie nicht laufen und ich bin total verwirrt und weiss nicht warum hab die seite mit DWMX2k4 erstellt und nun sendet es anscheinend nicht und der resetbutton geht auch nicht :/
der fehler is garantiert total billig aber ich find ihn net :(

bitte um hilfe hier die seite:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css/style.css" rel="stylesheet" type="text/css">
<script language="javascript" src="../js/menus.js"></script>
<script language="javascript">

var descriptions = new Array();
descriptions['Name'] = 'Contact Name';
descriptions['Company'] = 'Company Name';
descriptions['Address'] = 'Address';
descriptions['City/Country'] = 'City';
descriptions['Post/Zip'] = 'Post / Zip Code';
descriptions['Telephone'] = 'Telephone';
descriptions['Email'] = 'Email';
descriptions['Inquiry'] = 'Inquiry';

function ValidateForm(checkThese) {
	for(i=0; i<checkThese.length; i++) {
		if(document.forms['frmInquiries'].elements[checkThese[i]].value == '') {
			alert('Please fill the ' + descriptions[checkThese[i]] + ' form field.');
			document.forms['frmInquiries'].elements[checkThese[i]].focus();
			return false;
		}
	}
	return true;
}
</script>
<style type="text/css">
<!--
.Stil1 {color: #FF9900}
body,td,th {
	color: #FFFFFF;
}
body {
	background-color: #000099;
}
a:link {
	color: #FFFFFF;
}
a:visited {
	color: #FFFFFF;
}
a:hover {
	color: #FFFFFF;
}
a:active {
	color: #FFFFFF;
}
-->
</style>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" class="dropshadow">
<br />

<table width="730" border="0" align="center" cellpadding="0" cellspacing="0" class="text">
  <tr> 
    <td valign="top">	
      <form action="" method="POST" name="frmInquiries" onSubmit="return ValidateForm(this.required.value.split(','));">
<input type="HIDDEN" name="recipient" value="broetchen2k@web.de">        
<input type="HIDDEN" name="subject" value="GENERAL INQUIRY" />
        <input type="HIDDEN" name="required" value="Name,Company,City/Country,Adress,Post/Zip,Telephone,Email,Website,Inquiry" />

        <table width="100%" border="0" cellpadding="2" cellspacing="1" class="text">
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Name*</td>
            <td> </td>
            <td> 
              <input name="Name" type="TEXT" class="formfield" id="Name" size="30" /></td>
          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Company*</td>
            <td> </td>
            <td> 
              <input name="Company" type="TEXT" class="formfield" id="Company" size="30" /></td>

          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">City/Country*</td>
            <td> </td>
            <td> 
              <input name="City/Country" type="TEXT" class="formfield" id="City/Country" size="30" /></td>
          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Address*</td>
            <td> </td>
            <td> 
              <input name="Adress" type="TEXT" class="formfield" id="Adress" size="30" /></td>

          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Post / Zip Code*</td>
            <td> </td>
            <td> 
              <input name="Post/Zip" type="TEXT" class="formfield" id="Post/Zip" size="30" /></td>

          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Telephone*</td>
            <td> </td>
            <td> 
              <input name="Telephone" type="TEXT" class="formfield" size="30" /></td>

          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Fax</td>
            <td> </td>
            <td> 
              <input name="Fax" type="TEXT" class="formfield" size="30" /></td>
          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">E-mail*</td>
            <td> </td>
            <td> 
              <input name="Email" type="TEXT" class="formfield" size="30" /></td>

          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1">Website</td>
            <td> </td>
            <td> 
              <input name="Website" type="TEXT" class="formfield" value="http://" size="30" /></td>
          </tr>
          <tr>
            <td valign="middle" class="formfieldtxt Stil1">Inquiry*</td>
            <td> </td>
            <td><textarea name="Inquiry" cols="30" rows="6" wrap="VIRTUAL" class="formfield" id="Inquiry"></textarea></td>
          </tr>
          <tr> 
            <td width="180" valign="middle" class="formfieldtxt Stil1"> </td>
            <td><input name="Submit" type="image" id="Submit" src="images/submit.gif" alt="submit" align="middle" width="45" height="17" /></td>
            <td><input name="Reset" type="image" id="Reset" src="images/reset.gif" alt="reset" align="middle" width="45" height="17" /> </td>
          </tr>
        </table>
      <br />
        <br /> 
      </form>
    </td>
  </tr>
</table>
<br />
</body>
</html>



danke für jede hilfe ^^
 
Zuletzt bearbeitet von einem Moderator:
Zurück
Oben