Related Posts
How to free up space in your Inbox
While Google is quite generous in giving each user a lot of... read more
How to run, execute insert query in Drupal 8
"There may be several other possible ways, but I know one simple... read more
Bootstrap Added to Gig Project
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <!-- Optional... read more
Sending SMS and WhatsApp messages from your Inbox
There are certain formal settings (like a conference, meeting or classroom) where... 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
Sending File for Download to browser in CakePHP
Below code can be helpful $this->response->file($this->DIR.$file, array('download' => true, 'name' => "$file")); 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
How to check Laravel version?
How to check laravel version: Step1: Find Application.php file in your app and... 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 morepreg_match(): No ending delimiter ‘^’ found Laravel Full Name Validation Rules
The regex caused the error during validation check on Alphaspace Rules regular... read more

Leave a Reply
You must be logged in to post a comment.