ALL articles of PHP

PHP array_combine method example

In this tutorial article, we have PHP array_combine method with example. Suppose we have two array and we want to create one array i.e, one...

READ MORE

How to get last inserted record in PHP

Any table has id field which is AUTO_INCREMENT. So when the record inserted, id is generated automatically generated according to previous r...

READ MORE

proc_open(): fork failed - Cannot allocate memory

Sometimes, when you run any composer command in Laravel project, you may get error 'proc_open(): fork failed - Cannot allocate memory&#3...

READ MORE

PHP HTTP CURL request example

When building APIs in PHP application, you need to send request to external server. To send request to external servers, there are seve...

READ MORE

Export data into CSV file in PHP

You might have already used any package to download data in csv file. If you are using lots of packages in your project, it might  some...

READ MORE

Google pie chart with ajax request example in PHP

Hello Guys, In the last tutorial, we have discussed how to implement Google chart in Laravel application. We have implemented Line chart....

READ MORE