24 02, 2021

Fetch Mails from Gmail in Core PHP

2021-02-24T05:15:06+00:00February 24, 2021|PHP Frameworks|0 Comments

|
| ByWebner

Fetch Mails in Core PHP Create an Core php app on console (https://console.developers.google.com). Download Google Client library from the following link (https://github.com/googleapis/google-api-php-client) Download the file of credentials(client_id,client_secret) and put it in the project directory. Create the config file in the [...]

10 07, 2020

PHP Best Practices

2020-07-10T06:14:19+00:00July 10, 2020|Web Development|0 Comments

|
| ByWebner

Below are the best practices that should be followed in PHP: 1. define() vs. const In the early version of PHP, one would use define() function to set constants. But with new updates in PHP gained one more way to [...]

27 05, 2020

Regular expressions in PHP

2020-05-27T06:19:00+00:00May 27, 2020|PHP Frameworks|0 Comments

|
| ByWebner

Regular expressions Regular expressions use arithmetic operators like +,^,- and create complex expressions that can help to validate IP address, email address, telephone no, etc. They save our coding time. Some of built-in PHP regular expressions are: Preg_replace- perform pattern [...]

25 05, 2020

Convert PDF To Image In PHP

2020-05-25T06:33:42+00:00May 25, 2020|PHP Frameworks|0 Comments

|
| ByWebner

How to convert PDF to image file using PHP? Before installing PDF to Images package, firstly you need to install two PHP extensions Imagick and Ghostscript. Step 1: Install Imagick sudo apt-get install php-imagick Step 2: Restart Apache In the [...]

31 12, 2019

Laravel Events Introduction With Example

2019-12-31T05:14:20+00:00December 31, 2019|PHP Frameworks|0 Comments

|
| ByWebner

Laravel Events Events are one of the many powerful features of the Laravel. The event basically means the thing that happens or takes place, especially the one that is important. So, in Laravel’s case, events are triggered when some condition [...]

6 11, 2019

Methods of Debugging – PHP

2019-11-06T13:04:24+00:00November 6, 2019|PHP Frameworks|1 Comment

|
| ByWebner

Methods of Debugging by dumping information These methods are used for debugging in PHP. We can see the variable values in human-readable form on the console and can find errors in case there are issues due to variables incorrect values. [...]

5 09, 2019

Paytm gateway integration in PHP

2019-09-05T12:21:12+00:00September 5, 2019|PHP Frameworks|1 Comment

|
| ByWebner

Paytm gateway integration in PHP Paytm is a very popular way to make payments these days. To integrate Paytm in our site we need to follow the given steps - Step 1. First, we need to create an account at [...]

14 06, 2019

Face detection using Laravel

2019-06-14T10:05:21+00:00June 14, 2019|PHP Frameworks|0 Comments

|
| ByWebner

Method of Face detection using Laravel Laravel is a PHP framework for Web Development. It provides many features to make things easy for Web Development. It also takes care of the security of the application. If you have an intermediate [...]

15 05, 2019

Send Emails Using Mandrill

2019-05-15T10:45:49+00:00May 15, 2019|PHP Frameworks|0 Comments

|
| ByWebner

How to Send Emails Using Mandrill Mandrill is a transactional email platform which was built by Mailchimp. It is used for sending the personalized, one-to-one e-commerce emails, and automated transactional emails like password resets, order confirmations, and welcome messages Steps: [...]

23 04, 2019

Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*

2019-04-23T13:19:29+00:00April 23, 2019|Cloud, Database, Linux, Windows, Mac, Others (Technical), PHP Frameworks, Web Development|0 Comments

|
| ByWebner

How to resolve "Class 'App\Controller\Aws\S3\S3Client' not found" error in CakePHP 3.* Problem: Class 'App\Controller\Aws\S3\S3Client' not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [ [...]

11 04, 2019

Sort query result according to search conditions in CakePHP 2.

2019-04-11T13:10:24+00:00April 11, 2019|PHP Frameworks, Web Development|0 Comments

|
| ByWebner

How to sort query result according to various search conditions in fetch query of CakePHP 2. Problem: Priority based sorting of records Example: Search a string (“Proposalways StudySection”) and display records in following order: Contain all words (“Proposalways StudySection”) in [...]

Go to Top