1. Frage: Warum kann ich kein JAVA Script in PHP einbauen... (siehe unten)
2. Frage: Wie bekomm ich eine Eingabeprüfung hin mit speicher funktion (in PHP) wenn man vergessen hat ein feld auszufüllen, also wenn man auf submit geht und man was vergessen hat, dass man dann nicht alles von vorne ausfüllen muss...
hier der quelltext:
ALSO die JAVA SCRIPT funktion funktioniert in HTML ohne PHP sobald ich aber php einbaue zeigt der mir auf der hp an dass da en fehler in line X ist !!!
woran liegt das???
2. Frage: Wie bekomm ich eine Eingabeprüfung hin mit speicher funktion (in PHP) wenn man vergessen hat ein feld auszufüllen, also wenn man auf submit geht und man was vergessen hat, dass man dann nicht alles von vorne ausfüllen muss...
hier der quelltext:
PHP-Code:
<? ob_start();
include("config.php");
echo '<html>
<title>Clandatenbank Script</title>
<head>';
echo '<style type="text/css">
TD {FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px; color: '.$textcolor.'}
A:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; line-height: normal; color: '.$linkcolor.'; text-align: center; }
A:visited { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; line-height: normal; color: '.$linkcolor.'; text-align: center; }
A:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; line-height: normal; color: '.$linkcolor.'; text-align: center; }
A:active { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; line-height: normal; color: '.$linkcolor.'; text-align: center; }
</style>
<style type="text/css">
INPUT {
font-size: 10px;
color: #000000;
background-color: '.$color2.';
border: 1px solid #000000;
}
</style>
<script LANGUAGE="JavaScript">
<!--
function click() {
if (event.button==2) {
alert('Nix da ;-)')
}
}
document.onmousedown=click
// -->
</script>
<script Language="JavaScript">
// No rightclick script for Netscape
if (navigator.appName.indexOf("Netscape") != -1){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick;
window.onmouseup=rightclick;
function rightclick(e) {
if (e.which == 3) {
alert('Nix da ;-)')
return false;
}
else {
return true;
}
}
}
</script>
</head>
<body bgcolor="'.$color1.'" text="'.$textcolor.'">';
switch($goto) {
default:
echo '<center>
<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td vAlign="top"><center>'.$jointxt.'</center><br><br>
<center><table border="0" width="200" height="200" cellspacing="0" cellpadding="4">
<tr>
<td>Name:</td>
<td><form action="'.$PHP_SELF.'?goto=joinus" method="post">
<input type="text" name="nick" size="16">';
if($pnick=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td>Alter:</td>
<td><input type="text" name="alter" size="16">';
if($palter=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td>Connection:</td>
<td><input type="text" name="connection" size="16">';
if($pconnection=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td>Herkunft:</td>
<td><input type="text" name="herkunft" size="16">';
if($pherkunft=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td>E-mail:</td>
<td><input type="text" name="email" size="16">';
if($pemail=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td>ICQ:</td>
<td><input type="text" name="icq" size="16">';
if($picq=="no"){ echo ' <font color="red">Fail</font>'; }
echo '</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit"> <input type="reset" value="Reset"></form></td>
</tr>
</table>
</center></td>
</tr>
</table>
</center>';
break;
case "joinus":
if(trim($nick)!="" && trim($alter)!="" && trim($connection)!="" && trim($herkunft)!="" && trim($email)!="" && trim($icq)!=""){
$message="Es will jemand $clantag joinen. \n
Seine angaben: \n \n
Nick: $nick \n
Alter: $alter \n
Connection: $connection \n
Herkunft: $herkunft \n
E-Mail: $email \n
ICQ: $icq \n \n
Er bittet um Rückmeldung!";
$subject="Ich möchte jemand $clantag joinen | $nick";
mail($to_email,$subject,$message,"From: $email");
echo '<center>
<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td vAlign="top"><center><table border="0">
<tr>
<td>Deine Email wurde erfolgreich versand!</td>
</tr>
</table></center>
</td>
</tr>
</table></center>';
}
else {
if(trim($nick)==""){ $error = "&pnick=no"; }
if(trim($alter)==""){ $error .= "&palter=no"; }
if(trim($connection)==""){ $error .= "&pconnection=no"; }
if(trim($herkunft)==""){ $error .= "&pherkunft=no"; }
if(trim($email)==""){ $error .= "&pemail=no"; }
if(trim($icq)==""){ $error .= "&picq=no"; }
header("Location: ".$PHP_SELF."?goto=default".$error);
}
breaK;
}
?>
ALSO die JAVA SCRIPT funktion funktioniert in HTML ohne PHP sobald ich aber php einbaue zeigt der mir auf der hp an dass da en fehler in line X ist !!!
woran liegt das???
Kommentar