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("הכתבה נוספה בהצלחה לבסיס הנתונים");
}
?>