Export Large Database in cPanel by SSH Command

Posted on: Wednesday September 18, 2024

To export a large MySQL database via the command line, you use the mysqldump utility. Here’s the basic syntax and steps for exporting a large database: Basic Syntax mysqldump -u username -p [...]

Read More

Import Large Database in cPanel by SSH Command

Posted on: Wednesday September 18, 2024

Importing large database from phpmyadmin Import is difficult because of time limit and file size, so here we will see how to import large databases in phpmyadmin or cPanel using SSH. You can use the [...]

Read More

YouTube Channel Video API in PHP

Posted on: Monday May 27, 2024

How to load/list YouTube channel Videos? Here we will see how we can load YouTube channel video in our website by using JSON. Now we will start this from scratch STEP 1 (Get API Key): We will get [...]

Read More

YouTube channel video in website

Posted on: Monday May 27, 2024

How to load/list YouTube channel Videos? Here we will see how we can load YouTube channel video in our website by using JSON. There are two steps: Query Channels to get the “uploads” Id. [...]

Read More

Instagram Feed on Website PHP

Posted on: Friday May 24, 2024

Instagram Feed in  PHP STE 1 : Get Instagram Access Token https://docs.oceanwp.org/article/487-how-to-get-instagram-access-token STEP 2 : PHP Code for Website [crayon-672a2df25a5bf919624372/] [...]

Read More

Multi time store data in PHP session

Posted on: Wednesday March 22, 2023

Store multiple data in a session, you can store multiple times data in a PHP session without destroying previous session data. Please find PHP method below: [crayon-672a2df25aa23208660355/] [...]

Read More