Create Read Update Delete in PHP with Source Code

Source Code of Create, Read, Update and Delete in Php. Source code of config.php <?php $conn = mysqli_connect(“localhost”, “root”, “”, “northwind”) OR die(“CNC”); ?> Showcustomers.php <?php include ‘config.php’; $sqlshow = “SELECT `CustomerID`, `CompanyName`, `ContactName`, `ContactTitle` FROM `customers` “; $results = mysqli_query($conn, $sqlshow); echo “<table border=’1′ width=’100%’><tr><th>ID</th> <th>CompanyName</th> <th>ContactName</th> <th>ContactTitle</th></tr>”; foreach($results as $result){ ?> <tr> <td><?php …

Create Read Update Delete in PHP with Source Code Read More »

Complete Facebook Page Setup Guide and Tutorial

This is a step by step or a Complete Facebook Page Setup Guide and Tutorial which covers following steps: Creating a Facebook Business Page Basic settings of a Facebook Page. Roles Management in Facebook Page Automatic Message Responding in Facebook Business Page. Settings Link Tabs Choosing the best template as per the type of business. …

Complete Facebook Page Setup Guide and Tutorial Read More »

Steps-for-Digital-Marketing-of-Any-Project-min

Ultimate Steps Needed for Digital Marketing of Any Project

In this article we will discuss about all the steps needed for Digital Marketing of any project. It will include keyword research On Page SEO, off Page SEO, Social Media Optimization(SMO) and Marketing(SMM), Website Indexing in search engines and web data analytics for future plans. We will share name and links of useful tools with …

Ultimate Steps Needed for Digital Marketing of Any Project Read More »

Python-Tutorial-Part-3-Basic-Syntax-of-Python

Python Tutorial Part 3 – Basic Syntax of Python

In the previous part of this tutorial we explained the process of installing Python on your computer. In this tutorial we will explain about the Basic Syntax of Python language. Once Python is installed in your computer you can use one of the following tools to code and execute python. You can search for Python in …

Python Tutorial Part 3 – Basic Syntax of Python Read More »

how-to-install-python

Python Tutorial Part 2 – How to Install Python

This article will guide you through the process of Installing Python in your computer. Python is supported by Windows, Linux/UNIX, Mac OS X, and Other Operating Systems. You can click on the respective links to Go to the Download Page and select the Python version of your choice. Currently the version of Python is 3.6.5. …

Python Tutorial Part 2 – How to Install Python Read More »