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 [...]

13 01, 2021

What is DevOps?

2021-01-13T07:52:42+00:00January 13, 2021|PHP Frameworks, Web Development|0 Comments

|
| ByWebner

What is DevOps? DevOps is a set of practices that combines software development and other IT operations. It shortens the systems development life cycle and aims to provide continuous delivery with high-quality software. Who is DevOps Engineer? They are either [...]

5 10, 2020

Integrate Razorpay in CakePHP 3

2020-10-05T07:18:00+00:00October 5, 2020|PHP Frameworks, Web Development|0 Comments

|
| ByWebner

Step 1: Create RazorPay Account First of all you need a test account for integration. Click the below link https://dashboard.razorpay.com/#/access/signup and set up a test account there: Step 2: Get your API Keys: After successful login, you will see your [...]

14 07, 2020

Laravel 5.4 Logs And Errors

2020-07-14T05:53:51+00:00July 14, 2020|PHP Frameworks|0 Comments

|
| ByWebner

Introduction Logfiles: Logs are files that keep a registry or records of events, processes, messages that occur in the operating system or any software that runs. Laravel provides the robust logging services that allow the user to log messages 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 [...]

21 05, 2020

Introduction to MVC

2020-05-21T06:18:50+00:00May 21, 2020|PHP Frameworks|0 Comments

|
| ByWebner

What is MVC? The MVC is a very frequent web development architectural framework or application designing model which contains three main components the Model, the View and the Controller each of them performs different functions assigned to them. It helps [...]

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 [...]

18 11, 2019

Validation vs. Application Rules In CakePHP

2019-11-18T12:44:46+00:00November 18, 2019|PHP Frameworks|0 Comments

|
| ByWebner

CakePHP uses a two-layered approach to validation: 1. Validation It determines basic validity. It ensures that the data types, size, and format of data are correct. When we call newEntity() or patchEntity() methods, validations are triggered. For example, checking if [...]

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. [...]

Go to Top