php

How to Configure XAMPP to Send Mail from Localhost

You can send mail from localhost with sendmail package , sendmail package is inbuild in XAMPP. So if you are using XAMPP then you can easily send mail from localhost. for example you can configure C:\xampp\php\php.ini and c:\xampp\sendmail\sendmail…

How to Upgrade PHP Version on XAMPP

The method here so that if anyone needs to use PHP 8.3 quickly, you can try updating XAMPP by manually replacing the PHP version with a newer one: Backup The Important Files Before making any changes, it's always a good idea to backup your importa…

Why Does Meta Refresh Not Work in Firefox?

If you are building a website which includes a login page and you need to redirect the user to their profile page once they've logged in successfully, but you don't know how to do that in PHP, this is the right solution for you. I have a pag…

Installing XAMPP on Windows for PHP and Oracle Database

Today's guest post comes from Tianfang Yang who's been working with the Oracle Database extensions for PHP. This post shows how to install XAMPP on Windows to run PHP applications that connect to a remote Oracle Database. XAMPP is an open…

How to Customize the PDF Output in Datatables

Short little snippet I found the other day to customize the pdf output in datatables. buttons: [ { text: 'PDF Html5 (Land)', extend: 'pdfHtml5', message: '', orientation: 'landscape', e…

How to Create JSON Nested Object Using PHP PDO

In this tutorial, we are going to learn how to Convert MySQL Data Into JSON Format in PHP using PDO. This is a simple, short source codes, and useful tutorial that we have today. JSON is exchanging format to web development or in the mobile applicatio…

Make REST calls in PHP

In this information around how to call a REST API. You can access any REST API with PHPs cURL Extension. However, the API Documentation (Methods, Parameters etc.) must be provided by your Client! Below the different options for making rest API in…

That is All