אשכול: בעיה בקוד
View Single Post
ישן 10-08-07, 15:25   # 14
Elad-A
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 1,987

Elad-A לא מחובר  

PHP קוד:
<form method="post" action=""> 
שם:<input type="text" name="name" maxlength=15 /><br />
נושא:<input type="text" name="subject" maxlength=15 /><br />
תוכן ההודעה:<br /><textarea name="content" maxlength=40></textarea><br />
<input type="submit" value="הגב!" name="submit" />
</form>
<?php
$submit 
$_POST['submit'];
if (
$submit)
{
include(
"connect.php");
$name htmlspecialchars($_POST['name']);
$subject htmlspecialchars($_POST['subject']);
$content htmlspecialchars($_POST['content']);
$date date("j/n/y");
$query "INSERT INTO 'table' (name, subject, content, date) VALUES ('$name', '$subject', '$content', '$date')";
$result mysql_query($query) or die("query failed : " mysql_query());
echo 
"<font color='green'>התגובה נוספה בהצלחה!</font><br />"
echo 
"לחץ <a href=\"index.php\">כאן </a>כדי לעבור לעמוד התגובות"


?>
<hr />
  Reply With Quote