My Database table is like below, table name is add_family
:
id , Head_id ,Head_Name , CustomerName customer_id
1 , 2589 , Mitesh , anuj^anil , 456^259
2 , 2590 , vijay , amit^ajay , 852^454
if I want to delete any of customer name and its id then how can I delete it in CodeIgniter? e.g if I want to delete only CustomerName
Anuj and his customer_id
456 where Head_id
is 2586,
how can I delete it?
What you should do is use query builder class and load database library.
Here's an example from official docs:
If you want to do it dynamically and you always want the part after the
^
you can use , for example, the phpexplode
function like this:Note that you should not update the ID of a table if it's the primary key.