Php Training

AJAX Training & Tutorial by Slidescope

AJAX Training & Tutorial by Slidescope AJAX Training & Tutorial AJAX is a very amazing language to learn if you want to learn and work in the field of website, UI – User Interface, or frontend development. if a student is looking for full-stack development training then he has to learn AJAX. We use AJAX …

AJAX Training & Tutorial by Slidescope Read More »

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 »

Tools-needed-to-Run-PHP-on-local-server

Tools needed to Run PHP on local server – PHP Tutorial Part 2

We introduced PHP to students in the Part 1 of this tutorial. In order to run PHP locally or in your computer or laptop you will need following resources: Apache Web Server Note – Nginx (high-performance HTTP server), lightspeed (open-source web server) etc. are some alternatives to Apache. PHP You can download php from www.php.net/downloads …

Tools needed to Run PHP on local server – PHP Tutorial Part 2 Read More »

How to create wheather api

How to use openweathermap API with PHP

How to use OpenWeatherMap API with PHP OpenWeatherMap API with PHP In this tutorial, we are going to discuss a useful API from openweathermap.org. Its API can be used to display Current weather and 13-day Forecast data. It displays the following data: Minimum Temperature Maximum Temperature Wind Speed Humidity Value Weather Conditions and other details. …

How to use openweathermap API with PHP Read More »