Enter search value in the textbox e.g. PHP, jQuery and click the submit button.
S.no | Title | Content |
---|---|---|
1 | How to Create and Load Model in CodeIgniter | In CodeIgniter Model are the PHP classes where all database related manipulation is done e.g. fetching records, insert, update, and delete records. Within this, all data processin ... |
2 | Delete Multiple Selected Records with PHP | It is time-consuming to delete records one by one from the list.To make deletion process easier for the users by allowing them to select multiple records using checkboxes.Execute d ... |
3 | Live username Availability check with AngularJS in CodeIgniter | If there is the registration form on the website then you need to make sure that the username or email must be unique. The user will login with the selected username next time when ... |
4 | Bootstrap Datepicker Start and End date Validation | You can easily enable date selection to the form element using Bootstrap datepicker if you are already using Bootstrap in your page. You need to add external Bootstrap datepicker l ... |
5 | Remove Duplicate values from an Array in PHP | The array_unique() method is used to remove repeated or duplicate values from the array and return an array. It is better to use this method on the array if there is some possibili ... |