In this example we will discuss about how to delete a record or data from MySQL database using CodeIgniter framework PHP.
The DELETE statement is used to delete records from a table:
DELETE FROM table_nameWHERE some_column = some_value
Notice : The WHERE clause specifies which record or records that should be deleted. If you omit the...
28 September, 2018
Update record CodeIgniter framework PHP
Programing Coderfunda
September 28, 2018
codeigniter
No comments
In this example we will discuss about how to update a record or data from MySQL database using CodeIgniter framework PHP.To update the data in mysql table UPDATE statement is used.UPDATE table_nameSET column1=value, column2=value2,...WHERE some_column=some_value Note: The WHERE clause specifies which data that should be updated....
Update record CodeIgniter framework PHP
In this example we will discuss about how to update a record or data from MySQL database using CodeIgniter framework PHP.
To update the data in mysql table UPDATE statement is used.
UPDATE table_nameSET column1=value, column2=value2,...WHERE some_column=some_value
Note: The WHERE clause specifies which data that should...