Views: 61Do you want to add a column to your admin pages showing the active WordPress page template? While you need to display additional information in your WordPress dashboard, we have created a quick code snippet that you can use to add a custom column with currently active page template. Use the following snippet at functions.php OR at […]
Author: User
How to import large sql file in XAMPP ? – MySQL Dump
Views: 278We will use Command-Line Tools (Shell) to import large database SQL file. 1. Open the XAMPP Control Panel Make sure Apache and MySQL are running and click the Shell button in the XAMPP Control Panel. 2. To import database, use the following command Where: username – your MySQL username. e.g. root database_name – database name you are […]
How to Import Large Database Files in XAMPP
Views: 82Make changes in xampp\php\php.ini Look for the following: then replace the lines with the following: Source : https://carlofontanos.com/how-to-import-large-database-files-in-xampp/
Convert Data from Mysql to JSON Format using PHP
Views: 152Get Datas from Database using MySQLi Function & PHP to encode as jSON References & Thanks to, Video : https://www.youtube.com/watch?v=I4SRqAS7J8UCode : https://www.webslesson.info/2016/05/convert-data-from-mysql-to-json-formate-using-php.html
API for WooCommerce Wishlist Plugin
Views: 400Creating API for WooCommerce Wishlist Plugin URL : https://wordpress.org/plugins/ti-woocommerce-wishlist/ Idea of Creation Referring Table : wp_users for user created, to retain the ID AutoGenerated,Once the user is created or registered, Table ‘wp_tinvwl_lists’ autocreates data, Wishlist datas stored at Table ‘wp_tinvwl_items’ But here we are creating separate table for it. Used this for getting datas @ https://snippets.sndynamicsit.com/convert-data-from-mysql-to-json-format-using-php/
Enter your Title
Views: 72enter some content say for example we will adopt / refer some tutorial site for this demo process. Any document starts with a heading. You can use different sizes for your headings. HTML also has six levels of headings, which use the elements <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>. While displaying any heading, browser adds one […]
Login using PHP & MySQL
Views: 133We use HTML, CSS for Form Design and PHP for Checking whether the username & password is correct, which is stored in database. We use MySQL Database. Creating Config.php Creating Login.php Login PHP is having information about php script and HTML script to do login.