عندما اقوم بتعديل البيانات على قاعدة البيانات لا تتم العملية
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<?php
include("../clinics/config.php");
$id=$_GET['id'];
$result=mysqli_query($con,"select * from sick where id_s=$id");
while($res=mysqli_fetch_array($result))
{
$name_s=$res['name_s'];
$sex_s=$res['sex_s'];
$phone_s=$res['phone_s'];
$note_s=$res['note_s'];
}
?>
<style>
body
{
background-color:#c39;
}
div
{border:1px double #fff;
background-color:#c9f;
}
</style>
<body>
<center>
<div class="div">
<form name="form1" method="post" action="">
<table>
<tr>
<td><input type="text" name="name_s" value='<?php echo $name_s;?>' /> </td>
<td>اسم المريض</td>
</tr>
<tr>
<td><input type="text" name="sex_s" value='<?php echo $sex_s;?>' /> </td>
<td>الجنس</td>
</tr>
<tr>
<td><input type="number" name="phone_s" value='<?php echo $phone_s;?>' /> </td>
<td>رقم الهاتف</td>
</tr>
<tr>
<td><input type="number" name="age_s" value='<?php echo $age_s;?>' /> </td>
<td>العمر</td>
</tr>
<tr>
<td><textarea name="note_s" cols="20" rows="7" value='<?php echo $note_s;?>' /></textarea> </td>
<td>ملاحظات</td>
</tr>
<tr>
<td> <input type="hidden" name="id" value='<?php echo $_GET['id'];?>' /></td>
<td><input type="submit" name="updata" value="تحديث" /></td>
</tr>
</table>
<br>
</form>
<a href="home.php"><font face="KacstArt" color="red">العودة </font></a></div>
<?php
if(isset($_POST['updata']))
{
$id_s=$_POST['id'];
$name_=$_POST['name_s'];
$sex_s=$_POST['sex_s'];
$phone_s=$_POST['phone_s'];
$age_s=$_POST['age_s'];
$note_s=$_POST['note_s'];
$updata="updata sick set name_s='$name_s',sex_s='$sex_s',phone_s='$phone_s',age_s='$age_s',note_s='$note_s' where id_s=$id";
$result=mysqli_query($con,$updata);
mysqli_close($con);
}
?>
</center>
</body>
</html>
ساعد بالإجابة
"إن في قضاء حوائج الناس لذة لا يَعرفها إلا من جربها، فافعل الخير مهما استصغرته فإنك لا تدري أي حسنة تدخلك الجنة."
الإجابات (1)
لايوجد لديك حساب في عالم البرمجة؟
تحب تنضم لعالم البرمجة؟ وتنشئ عالمك الخاص، تنشر المقالات، الدورات، تشارك المبرمجين وتساعد الآخرين، اشترك الآن بخطوات يسيرة !