View Single Post
ישן 19-04-07, 08:04   # 3
Meir
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Dec 2006
גיל: 34
הודעות: 383

Meir לא מחובר  

PHP קוד:
<?php 
include "config.php";

$query mysql_query("SELECT * FROM `msg`");
while(
$con = @mysql_fetch_array($query))
{
$msg =  $con['Update'];
}
?>
<html>
<head>
<form method="POST">
<div align="center">
<textarea name="messege"><?php echo $msg?></textarea>
<input type="submit" value="עדכן תיבה">
</form>
</html>
<?
$id 
$_GET['id'];
$update $_POST['messege'];
$updateSQL "UPDATE `msg` SET `Update` = '$update' WHERE `id`='$id'";
mysql_query($updateSQL) or die(mysql_error());
?>
__________________
רק אחרי שנמצאים בחושך, אפשר להעריך את האור.
  Reply With Quote