[ad_1]
https://i.ytimg.com/vi/MccPSNL_VzU/hqdefault.jpg
Do you want to make CRUD application in PHP with MySQL and Bootstrap then watch this video and make your own PHP CRUD application step by step. Where CRUD stands for Create, Read, Update and Delete operation. And to perform this operation, we use some PHP code and MySQL queries INSERT, SELECT, UPDATE and DELETE which is correspond to CRUD functionality.
PHP Tutorial for a beginner: http://bit.ly/2pWmF3A
MySQL Tutorial for a beginner: http://bit.ly/2RpTlSE
JavaScript Tutorial for a beginner: http://bit.ly/2pWmF3A
Get a Source Code on Patreon: https://www.patreon.com/posts/24262676
Twitter : https://twitter.com/CodeAndCoins
GitHub : https://github.com/nawarajshah
Facebook : https://www.facebook.com/CodeAndCoins
Google+ : https://plus.google.com/+CodeAndCoins
WebSite : http://www.codeandcourse.com
Share this Video and Subscribe to my channel
#CodeAndCoins #CRUD
Original source
27 responses to “PHP CRUD Tutorial with MySQL and Bootstrap 4 (Create, Read, Update and Delete)”
Ask your question in our new forum https://forum.codeandcourse.com/viewforum.php?f=4
are you nepali? sir i need to learn more backend from you :help me please.
its giving me error about the mysqli
i have issues with the message, the msg appear but the <div> does not.
How to count deleted rows in same page
https://github.com/Veloz-X/-Advanced-CRUD-
Hi can you help me because I’ve created a crud table and I want to add a button where once click button the data will be inserted database and data in crud table will be deleted
sir i have problem
i cant user the delete btn and edit btn
when i click it nothing hpd
please help me.
Thanks a lot sir. You made my day, in 2k20
i have problrm with update button its not connected by the form
I hv problem with edit and update data
Please solve this error sir Call to a member function bind_param() on boolean in
Hello sir, thanks for your tutorial, but I'm struggling with this error :
Warning: session_start(): Cannot start session when headers already sent in D:ONNEOTHERS_CODING_PROGRAMMINGXAMPPhtdocsphpdasarcrudcrudQuery.php on line 4
<?php
require 'config.php';
session_start();
if (isset($_POST['save'])) {
$carmaker = $_POST['carmaker'];
$carline = $_POST['carline'];
$phase = $_POST['phase'];
$purpose = $_POST['purpose'];
$date = $_POST['date'];
$subgroup = $_POST['subgroup'];
$item = $_POST['item'];
$qty = $_POST['qty'];
$iQuery = "INSERT INTO budget(carmaker,carline,phase,purpose,required_date,subgroup,item_desc,qty) VALUES(?,?,?,?,?,?,?,?)";
$stmt = $conn->prepare($iQuery);
$stmt->bind_param("sssssssi", $carmaker, $carline, $phase, $purpose, $date, $subgroup, $item, $qty);
if ($stmt->execute()) {
$_SESSION['msg'] = 'New record succesfully inserted.';
$_SESSION ['alert']= 'alert alert-succes';
}else{
$_SESSION['msg'] = 'Failed to insert new data !';
$_SESSION ['alert']= 'alert alert-danger';
}
// session_write_close();
// ini_set('session.use_cookies',false);
// session_cache_limiter(false);
// var_dump($_SESSION);die;
$stmt->close();
$conn->close();
header ('Location: index.php');
}
?>
Mantap !!!, terima kasih
Көп білім үйрендім, IT жолындағы өмір сапарыма үлкен өзгерістер әкелді. Өте қуаныштымын, сізге көп рахымет!
Do you have a video tutorial where you can log in using the the data recorded on this vid?
very nice sir, I love to watch your channel videos
Php CRUD tutorial and mysql with PDO prepared statement and bootstrap 4
https://youtu.be/tOeHkri-d_M
is there any ready made framework work with bootstrap? i am planning to build an ERP and try not to get stuck in so much of the codes
thank you that your tuto are good and clear
Hi, every time i click edit and save the new one the old one won't delete
it's like is just adding new one
Very Well Explained Sir !
hello sir , i have a simple and basic doubt.
imagine there is a column which was by mistakely created. and there was no need of that column
but now the column is there in the database and the entire column is left blank because there was no need of that column.
so my question is how to delete that entire column or unwanted column without any condition.
like we simply delete an entire column in MS-Excel .
how can i do that in sql ? what is the sql query for that ?
sir can you help me my database is not connected properly
can you please add a filter table
Great subscribed bro
Sir I'm struggling for how to show
newlabel tag with every fresh post dynamical for specific time ? Any solution ?