View Single Post
ישן 25-07-06, 11:45   # 2
Ori The Man
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: חיפה
גיל: 34
הודעות: 3,694
שלח הודעה באמצעות MSN אל Ori The Man Send a message via Skype™ to Ori The Man

Ori The Man לא מחובר  

PHP קוד:
<?php 

if (!isset($_POST['submit'])) // אם לא נשלח הטופס אז.. 

    
header("location: index.php"); 

else 

    
// הצבת משתנים 
    
$koteret $_POST['subject']; 
    
$tohen $_POST['content']; 

    
//התחברות לבסיס נתונים 
    
mysql_connect('localhost','logicserv_zahi','salio') or die("ERROR: ".mysql_error()); 
    
mysql_select_db('logicserv_zahi') or die("ERROR: ".mysql_error()); // החלף את שם בסיס הנתונים בשם שקבעת 
     
    //הכנסת נתונים 
    
mysql_query("INSERT INTO `programs`(`koteret`,`tohen`) VALUES('$koteret','$tohen')") or die("ERROR: ".mysql_error()); 
    echo(
"הכתבה נוספה בהצלחה לבסיס הנתונים"); 


?>
  Reply With Quote