Naja ich hab schon im Internet Forum gepostet.
Ich kenn mich null mit PHPKit aus deswegen brauch ich nen HTML script für ein join Us Formular.
Auch ein Clanwar script und so was man halt brauch fürn clan.
Kann mir bitte wer helfen ?
Ich kenn mich null mit PHPKit aus deswegen brauch ich nen HTML script für ein join Us Formular.
Auch ein Clanwar script und so was man halt brauch fürn clan.
Kann mir bitte wer helfen ?
phpkit da komme ich nicht klar ich habs auf
pole14.po.funpic.de probiert aber:::::
Es klappt irgendwie net help help help!
pole14.po.funpic.de probiert aber:::::
Es klappt irgendwie net help help help!
Jez gibt ihn dochmal seinen formular!
Okay sag mir deine email-Adresse wo das hingeschickt werden soll und ich progg dir eins!
Okay sag mir deine email-Adresse wo das hingeschickt werden soll und ich progg dir eins!
Jo ich hab mal eins geproggt:
<?
// Copyright by SLJ
//config
$empfaenger = "Hier der empfänger"; //Wer soll die E-Mail bekommen
//Welche games
//Bitte so einfügen <option>Game1</option> <option>Game2</option> <option>Game3</option> usw.
$games = '<option>Game</option>';
//Ab hier bitte nichst mehr ändern
if(isset($_REQUEST['action']))
{
// übergebene Aktion setzen
$action = $_REQUEST['action'];
}
else
{
// Standard Aktion
$action = 'view';
}
switch($action)
{
case 'view' :
{
echo'
<form action="joinus.php?action=send" method="post">
<h2>Join Us</h2>
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td>Nick:</td>
<td><input type="text" name="nick" size=25></td>
</tr>
<tr>
<td>Name:</td>
<td><input type="page" name="name" size=25></td>
</tr>
<tr>
<td>Alter:</td>
<td><input type="text" name="alter" size=25></td>
</tr>
<tr>
<td> Land:</td>
<td><input type="text" name="land" size=25></td>
</tr>
<tr>
<td>Wohnort:</td>
<td><input type="text" name="wohnort" size=25 ></td>
</tr>
<tr>
<td>Squad:</td>
<td><select name="spiel">
'.$games.'
</select></td>
</tr>
<tr>
<td>E-Mail:</td>
<td><input type="text" name="mail" size=25 ></td>
</tr>
<tr>
<td>ICQ-Nummer:</td>
<td><input type="text" name="icq" size=25 ></td>
</tr>
<tr>
<td>I-Net:</td>
<td><input type="text" name="inet" size=25 ></td>
</tr>
<tr>
<td>Warum zu uns?</td>
<td><input type="text" name="warum" size=25 ></td>
</tr>
<tr><td> </td><td></td></tr>
<tr>
<td></td>
<td><input type="submit" name="send" value="Abschicken"><input type="Reset"></td>
</tr>
</table>
</form>
Coypright bei <a href="http://www.zocker-eppingen.de">SLJ</a>
';
}
break;
case 'send' :
{
$text = "Nick: $nick Name: $name Alter: $alter Land: $land Wohnort: $wohnort Squad: $spiel ICQ: $icq I-Net: $inet Warum: $warum E-Mail: $mail";
$betreff = "$nick will Joinen";
$sender = "$nick $mail";
$sendermail = "$mail";
mail($empfaenger, $betreff, $text,
"From: $sender <$sendermail>");
echo'Nachricht wurde verschickt';
}
break;
}
?>
Wenn du mehr skripte brauchst komm mal auf meine page:
www.ilch.de
<?
// Copyright by SLJ
//config
$empfaenger = "Hier der empfänger"; //Wer soll die E-Mail bekommen
//Welche games
//Bitte so einfügen <option>Game1</option> <option>Game2</option> <option>Game3</option> usw.
$games = '<option>Game</option>';
//Ab hier bitte nichst mehr ändern
if(isset($_REQUEST['action']))
{
// übergebene Aktion setzen
$action = $_REQUEST['action'];
}
else
{
// Standard Aktion
$action = 'view';
}
switch($action)
{
case 'view' :
{
echo'
<form action="joinus.php?action=send" method="post">
<h2>Join Us</h2>
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td>Nick:</td>
<td><input type="text" name="nick" size=25></td>
</tr>
<tr>
<td>Name:</td>
<td><input type="page" name="name" size=25></td>
</tr>
<tr>
<td>Alter:</td>
<td><input type="text" name="alter" size=25></td>
</tr>
<tr>
<td> Land:</td>
<td><input type="text" name="land" size=25></td>
</tr>
<tr>
<td>Wohnort:</td>
<td><input type="text" name="wohnort" size=25 ></td>
</tr>
<tr>
<td>Squad:</td>
<td><select name="spiel">
'.$games.'
</select></td>
</tr>
<tr>
<td>E-Mail:</td>
<td><input type="text" name="mail" size=25 ></td>
</tr>
<tr>
<td>ICQ-Nummer:</td>
<td><input type="text" name="icq" size=25 ></td>
</tr>
<tr>
<td>I-Net:</td>
<td><input type="text" name="inet" size=25 ></td>
</tr>
<tr>
<td>Warum zu uns?</td>
<td><input type="text" name="warum" size=25 ></td>
</tr>
<tr><td> </td><td></td></tr>
<tr>
<td></td>
<td><input type="submit" name="send" value="Abschicken"><input type="Reset"></td>
</tr>
</table>
</form>
Coypright bei <a href="http://www.zocker-eppingen.de">SLJ</a>
';
}
break;
case 'send' :
{
$text = "Nick: $nick Name: $name Alter: $alter Land: $land Wohnort: $wohnort Squad: $spiel ICQ: $icq I-Net: $inet Warum: $warum E-Mail: $mail";
$betreff = "$nick will Joinen";
$sender = "$nick $mail";
$sendermail = "$mail";
mail($empfaenger, $betreff, $text,
"From: $sender <$sendermail>");
echo'Nachricht wurde verschickt';
}
break;
}
?>
Wenn du mehr skripte brauchst komm mal auf meine page:
www.ilch.de
Logge dich ein um einen Beitrag zu schreiben.