Dein eigenes PN-System (Teil 2)
abfrage
absenden
array
datei
datum
ende
ermitteln
formular
gen
inhalt
liebe
mail
order
schicken
schleife
show
start
tabelle
teil
text
lima-city: free Hosting → Tutorials → PHP
Geschrieben von ballu am 14:57, 9.3.2005
Hoi.Dies ist die weiterführung zum ersten Teil.
Hier die Scripts mit erklärung:
show.php
<?php
include("connect.php.inc"); // Einfügen der Datei "connect.php.inc"
$result1 = mysql_query("SELECT * FROM pns WHERE id = $id AND to_id = $loginid ORDER BY timestamp LIMIT 1"); // MySQL-Abfrage aus der Tabelle "pns"
while($row = mysql_fetch_array($result1)) { // Start: while-Schleife
$date = date("d.m.Y, h:i:s",$row[timestamp]); // Datum ermitteln
echo "Von: $row[from_id] | Für: $row[to_id] | Datum: $date | Betreff: $row[subject]<br><br>$row[text]"; // Ausgeben des Textes
} // Ende: while-Schleife
echo "<a href='new_mail.php?to=$row[from_id]&subject=$row[subject]'>Antworten</a>";
?>
new_mail.php
// Formular
<form method="post" action="?send=true">
Zu ID: <input type="text" name="to_id"><br>
Betreff: <input type="text" name="subject"><br><br>
<textarea name="text">
// Ende des Formulars
<?php
if(isset($send) && $send == "true"); // Ist schon ein Inhalt eingefügt worden?
include("connect.php.inc"); // Einfügen der Datei "connect.php.inc"
$result = mysql_query("INSERT INTO `pns` ( `id` , `to_id` , `from_id` , `show_from` , `show_to` , `text` , `timestamp` , `subject` )
VALUES ('','$to_id','$loginid','yes','yes','$text',UNIX_TIMESTAMP(),'$subject'
);
") or die("Mail konnte nicht versendet werden!"); // PN absenden
}
?>
Bei Fragen einfach eine PN an mich schicken!
Liebe Grüße,
Ballu
| Benutzer | Bewertung | Datum |
|---|---|---|
eternitysoft ![]() ![]() |
1 | 17:03, 17.4.2005 |
toby01 ![]() ![]() ![]() |
1 | 6:34, 5.1.2009 |
| sebigisler | 1 | 11:22, 14.6.2005 |
the-eden-projekt ![]() ![]() ![]() ![]() |
1 | 19:18, 14.10.2007 |
sgame ![]() ![]() |
1 | 15:36, 12.3.2005 |
ballu ![]() |
1 | 14:31, 11.3.2005 |
trucidare ![]() ![]() |
1 | 17:35, 21.3.2005 |
bilo ![]() ![]() ![]() ![]() |
1 | 12:20, 18.3.2005 |
cheapsms ![]() ![]() ![]() |
2 | 15:56, 17.11.2009 |
| 0-checka | 4 | 1:18, 20.5.2005 |
| 1.4 |
Gesamt:
