PHP CRUD with MySQL

Database Create a new MySQL database named demo and execute the SQL code below: — phpMyAdmin SQL Dump — version 4.1.14 — http://www.phpmyadmin.net — — Host: 127.0.0.1 — Generation Time: …

PHP CRUD with MySQL Read More

Ajax with PHP

Product Object Creates new PHP file named product.php. This file contains product description information <?php class Product{ var $id; var $name; var $price; } ?> Demo 1 Creates new PHP …

Ajax with PHP Read More

PayPal with PHP

PayPal Configuration Create a new PHP file named config.php contains configuration information for paypal paypal as below: <?php $config [‘authtoken’] = ‘Your Token’; $config [‘posturl’] = ‘https://www.sandbox.paypal.com/cgi-bin/webscr’; $config [‘business’] = …

PayPal with PHP Read More