cant store data in database | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

cant store data in database

I don't have any error but why I can't store data in the database when I'm trying to input something

29th Aug 2018, 4:23 PM
Phoebe Gaufo
Phoebe Gaufo - avatar
1 Answer
+ 1
here's the php code <?php if(isset($_POST['submit1'])){ mysqli_query($conn,"insert into add_book values('','$_POST[bname]',$_POST[aname]','$_POST[pname]','$_POST[pdate]','$_POST[price]','$_POST[qty]','$_POST[aqty]','$_SESSION[librarian]')"); ?> <script type="text/javascript"> alert("books insert successfully"); </script> <?php } ?>
29th Aug 2018, 4:24 PM
Phoebe Gaufo
Phoebe Gaufo - avatar