My table has relationship with other field table(Constraint foreign key), so when this delete button click. it will show sweet alert that the data cannot be delete if they connected. Here my code &…
Tag: codeigniter
how to send multiple checkbox data with `|` delimeter using codeigniter form
I want to send multiple checkbox data using | delimiter in CodeIgniter form In my form, I use the checkbox to select multiple data: <form method="get" action="…
Codeigniter 3 application bug: logged in user’s avatar does not update in real time
I am working on a basic blog application with Codeigniter 3.1.8 and Bootstrap 4. The application has user (author) accounts. There is a problem with displaying the photo (avatar) of the logged-in …
Facing issue while using set_value() function in form_validation library in Codeigniter
I am using form_validation library in Codeigniter, I am facing an issue while using set_value() function. It not sets the value when an error occure in form validation. Here is my form ==> <div …
how do i search the data from two tables, they are not related
I am trying to build a search box to find out the similar title from 2 tables. Art Table- id Title Type Grants Table- id Title Type Right now I can only show the data from grants table, how do I …
HTML DOM: remove specific div based on data attribute value using php
I am new in codeigniter.I get the html string form database as shown below
send email to multiple recipient don’t work
I try to send email to multiple recipient but doesn’t work. It work when I only send it to one recipient. I put the email address in an array variable. I put the email I get from database in array …
Select Correct Value in Dropdown Box from Database with For Loop
I have a couple of dropdown boxes for Day and Year inputs. The values are taken during sign up so this dropdown is for updating purposes. I want to prepopulate the two dropdowns with the correct …
Codeigniter select where AND
How to do select where and with code igniter ? //select * from item_user where email=”myemail@gmail.com” and passwd=”123″ function index_get() { $email = $this->get(’email’); $passwd = $…
Add ‘From’ Header on email using Codeigniter
I’m working with Codeigniter in CPanel and my code already sends a mail, but when it gets to the receiver, the hostname is shown on the sender. I tried some answer to questions as : Change the …