Related Posts
How to set flash message in Codeigniter
$this->session->mark_as_flash('item'); # Version 3.x only $this->session->mark_as_flash(array('item', 'item2')); # Version 3.x only Array to... read more
How to find out if your email has been read
Have you ever read emailed somebody and spent time wondering whether they... read more
How to search your Mailbox without Opening it
Most popular browsers like Google Chrome and Mozilla Firefox allow you to... read more
How to Remove public from url laravel framework 5.x
Create a DIR in your laravel app root and name it "myapp", you... read more
What is sr-only CSS class in twitter bootstrap 3 or 4?
As per official bootstrap documentation about "sr-only CSS class": Always add labels Screen readers... read more
How to get last insert id in Codeigniter
$this->db->insert('users', $data); # where $data is an array $insert_id = $this->db->insert_id(); # insert_id()... read more
preg_match(): No ending delimiter ‘^’ found Laravel Full Name Validation Rules
The regex caused the error during validation check on Alphaspace Rules regular... read more
What is a Class in PHP?
In simple words, class is a user defined datatype. Which have its... read more
Allow users to see other users profiles in Drupal 8
Login to Admin panel Click on People Click on Roles and create Custom Role... read more
What is the difference between Git and Mercurial
Major Differences are: Git and Mercurial are the two most popular Distributed Version... read more

Leave a Reply