Tag: php7
Run PHP Web Applications Without External Server
Introduction This tutorial will show you how to run PHP web applications without external server. So, you don’t need to use external server when you are developing or building your PHP based web applications in your development or local environment. I will show you here both how to run standalone PHP file and PHP web applications without using any external…
How to enable GD2 Library for PHP in Windows
Introduction In this example you will see how to enable GD2 library for PHP in Windows operating System. The GD2 library is an image library used for image processing, such as, resize, crop, watermark etc. You can find more information on this here.
Configure PHP 7.3.5 and MongoDB 4.0.10
Introduction In this post I will show you how to configure PHP 7.3.5 and MongoDB 4.0.10 in Windows operating system. In my previous tutorial I had shown how to configure PHP 7.2.1 and MongoDB 3.6.4.
MongoDB PHP 7 CRUD Example
We know MongoDB is very popular open source, document based NoSQL database. In this tutorial I am going to create MongoDB PHP CRUD Example. CRUD means Create, Read, Update and Delete operations. So basically you will add new data (create), fetch data (read), edit existing data (update) and remove existing data (delete) from database.
Configure MongoDB with PHP 7 on Windows
Introduction This tutorial will show you how to configure MongoDB PHP 7 for XAMPP on Windows. XAMPP is an open source, easy to install Apache distribution containing PHP, Perl and MySQL. It’s very easy to install after downloading the Windows exe inataller file. MongoDB is one of the widely used NoSQL(Not only SQL) database in market today. MongoDB is a document database…