Не удается обновить данные в базе данных
база данных не может обновить эти данные и
$customer_id =$_GET['customer_id'];здесь есть ошибка. кто-нибудь, пожалуйста, помогите мне :'(
Что я уже пробовал:
<?php include "config.php"; $link = mysqli_connect($h ,$u ,$p,$db); $customer_id =$_GET['customer_id']; $sql="select*from customer where customer_id='$customer_id' "; $result=mysqli_query($link,$sql); $check =mysqli_fetch_array($result); if (isset($_POST['done'])) { $cuname=$_POST['cuname']; $phoneno=$_POST['phoneno']; $email=$_POST['email']; $address=$_POST['address']; $sql="update customer set cuname='$cuname',phoneno='$phoneno',email='$email',address='$address' where customer_id='$customer_id'"; if(!$sql) { echo "error"; } else { echo "try again" ; } } ?> <html> <form method=post onsubmit="return check()" > <input type="text" name="cuname" value="<?php echo $check['cuname'];?>" placeholder="name"> <input type="text" name="phoneno" value="<?php echo $check['phoneno'];?>" placeholder="phoneno"> <input type="text" name="email" value="<?php echo $check['email'];?>" placeholder="email"> <input type="text" name="address" value="<?php echo $check['address'];?>" placeholder="address"> <input type="submit" name="done" > </form> </html> <a href="home.html">Home</a>