Create PHP/MySQL Download Counter for your Website December 19, 2018 Today we are going to implement a download counter tool for your PHP/MySQL web page. Here we used syntax of HTML, CSS, PHP and MyS...Read More
Online Polling System using PHP/MySQL - Tutorial 01 January 01, 2018 There are many ways to script and build 'Online polling system'. Today, we are using PHP/MySQL syntax to create our own polling s...Read More
PHP, MySQL with jQuery Polling System - 04 November 22, 2014 dbcon.php <?php $link = mysql_connect('localhost', 'root', '') or die('error'); @mysql_select_db(...Read More
PHP, MySQL with jQuery Polling System - 03 November 22, 2014 update_tootip.php <?php include("dbcon.php"); $result=mysql_query("select * from polling"); $row=mysql_fetch_a...Read More
PHP, MySQL with jQuery Polling System - 02 November 22, 2014 ( update_box.php )<?php include("dbcon.php"); $result=mysql_query("select * from polling"); $row=mysql_fetch_ar...Read More
PHP, MySQL with jQuery Polling System - 01 November 22, 2014 (index.php) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-tran...Read More
Create a Simple Shopping Cart - E commerce with PHP & MySQL May 23, 2014 Tutorial 02 If username and password is correct, the system will load the next page. Page title: item panel. In this page you can add ...Read More
Create a Simple Shopping Cart - E commerce with PHP & MySQL May 23, 2014Tutorial 1 In this tutorial we will be going to present you about the index page. It is starting with a Login system. We hope to add Sign u...Read More
Radio Button Validation May 14, 2014<?php $error = -1; $errorgender = ""; $errorstatus = ""; $gender = ""; $status = ""; ...Read More
How to solve Wampserver error #1045 May 14, 2014 Error : MySQL said: #1045 - Access denied for user 'root'@'localhost' (using password: NO) phpMyAdmin tried to conn...Read More
Drop Down List Validation May 14, 2014<?php $error=-1; $errorcolor=""; $errorevent=""; $color = ""; $event = ""; Read More
Create simple student management system using PHP with MySQL part 2 October 24, 2013 This section will give you the basic PHP script to build your Student Management System. Please go through carefully. Don't copy and ...Read More
Exercise (2) PHP ARRAY July 09, 2013 Write a PHP program to find the Maximum, Minimum and Second Largest Value in following array. $array=array(12,34,54,34,12,56,87,95,55,77...Read More
Exercise (1) PHP ARRAY July 09, 2013 Following is a multidimensional array $itemss =array( array( "name"=>"Blue Pen", "Description...Read More