In this post, I would like to show you, how we can use Laravel’s Socialite plugin to use Twitter authentication in your Laravel based application.…
Leave a CommentCategory: PHP / MySQL
In this post, I would like to show the different ways to get last inserted ID from the database table when working with Laravel PHP…
Leave a CommentLet’s assume that we have a table with the following table schema: CREATE TABLE employee ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT COMMENT ‘The…
Leave a CommentIn this post, We will show you how you can use Ghostscript with PHP to merge multiple PDF files into a single file. Using Ghostscript,…
2 CommentsIn this CodeIgniter Twilio tutorial, I would like to show sending SMS from the CodeIgniter app using the Twilio library. Twilio is a cloud communications…
1 CommentIn this post, I will show inserting data into a database table using CodeIgniter. We gonna use CodeIgniter Active Records Pattern. This pattern allows information…
1 CommentIn this post, I will show you enabling CSRF tokens in your CodeIgniter application. To enable CSRF (Cross-Site Request Forgery) protection in CodeIgniter open application/config/config.php…
1 CommentIn this post, I will show you how you can access the CI’s instance object within your custom classes. You can utilize all of CodeIgniter’s…
Leave a CommentIn this tutorial, I would like to show creating a custom helper in your CodeIgniter application. Helper functions are used to avoid repeated code in…
2 CommentsIn this post, I would like to show using of PhpSpreadsheet library within your CodeIgniter 3 project. PhpSpreadsheet is a pure PHP library for reading…
15 CommentsIn this post, I would like to show you creating a JSON file and appending content to it whenever somebody submits a form. For this…
1 CommentIn this post, I will show you how easy it is to set up maintenance mode in CodeIgniter using CI’s hooks. while updating your web…
1 CommentI recently had to connect to an MSSQL Server using PHP on an Ubuntu system using PHP. To connect to MSSQL using PHP 5.6 we’ll…
Leave a CommentYou can now specify keys in list(), or its new shorthand [] syntax. This enables destructuring of arrays with non-integer or non-sequential keys.
Leave a CommentIn this post, I will show you how you can use the new Symmetric array destructuring feature of PHP7.1 version. In the previous version of…
Leave a Comment