Author name: SKB

PHP-Pagination Example

The below example shows that how to retrieve records from MySQL Database using PHP Pagination technique. In the below example  included image along with text information. For image and text storing and retrieving you can click here and refer the same. First of all create a php file called “pagination2.php” with following code in it. <html> <head> <title>Members […]

Share

PHP-Pagination Example Read More »

Short term courses by IIM’s

Short term professional courses for working people / executives from prestigious institutes like IIM’s (Indian Institute of Management). 1. IIM Ahmadabad  2. IIM Trichy  3. IIM Calcutta 4. IIM Bangalore 5. IIM Shillong 6. IIM Rohtak one can also find list of all IIM’s Executive / MDP program from NIIT Imperia through synchronize learning at your own

Share

Short term courses by IIM’s Read More »

Submit checkbox value to MySQL

Below example states that checkbox values can be stored into MySQL database using PHP program. Step 1: Create a table in MySQL with following screen shot. (Table name : Booked_Status) Step 2: Create connection string / configuration page as following example and name it ‘config2.php’ <?php $host=”localhost”; $username=”root”; $password=””; $dbname=”demo”; $con=mysql_connect(“$host”,”$username”,”$password”); mysql_select_db(“$dbname”,$con); ?> Step 3:

Share

Submit checkbox value to MySQL Read More »

Gantt chart and PERT Chart

1. A Gantt chart: A Gantt chart is developed as a production control tool in 1917 by Henry L. Gantt, an American engineer. Gantt chart is frequently used in project management, this chart provides a graphical explaination of a schedule that helps to plan,research, analyse, coordinate, and track specific tasks in a project. To create

Share

Gantt chart and PERT Chart Read More »

Password recovery example using php from MySQL

To retrieve the password from your MySQL Database with using PHP script. Step 1 : Create a table called “users” in your MySQL database with following structure for the same. Step 2: Create a configuration file called ‘config.php’ which contains connection string and local host / remote server path. <?php $connection = mysql_connect(‘localhost’, ‘root’, ”);

Share

Password recovery example using php from MySQL Read More »

Responsibilities of a typical Web developer

Before we begin about responsibilities of web developer, let’s understand more about what are the skills and qualifications are required to become a web developer. In web developing, various skills are required to master the huge world of web. Hence one needs to learn various technologies as following.   For Designing: HTML, HTML5, CSS, CSS5,

Share

Responsibilities of a typical Web developer Read More »

PHP-Database Programs

Following are the various PHP  programs to demonstrate Database  connections. 1. PHP Program to demonstrates whether the connection to mysql database is active or not. <?php $dbhost = ‘localhost’; $dbuser = ‘root’; $dbpass = ”; $db = ‘mars_db’; $conn = mysql_connect($dbhost,$dbuser,$dbpass); if (!$conn) { die(‘Could not connect: ‘ . mysql_error()); } else { echo ‘Connected

Share

PHP-Database Programs Read More »

Share
Scroll to Top