CPP Basic Programs-List1

Following are the list of C++ Programs. 1. C++ Program to display employee salary information. #include<iostream.h> #include<conio.h> class test { public: int bs, hra, pf, net; getdata(int bs1, int hra1, int pf1) { bs=bs1; hra=hra1; pf=pf1; net=bs+hra-pf; return(net); } void display() { cout <<“Net Salary=”<<net; } }; main() { clrscr(); test t; t.getdata(10000,3000, 1500); t.display(); …

CPP Basic Programs-List1 Read More »

Share

Work from home

To make money online or work from home, here are some simple steps to make extra earning for you. 1. Blogging : if you are good at writing articles or post. try www.blogspot.com orwww.wordpress.com You can write article/post on technical, non-technical, political, sports, science, fiction etc. 2. Online share trading: this requires lot of market …

Work from home Read More »

Share

check internet connection status

This java script example demonstrates that,  whether your browser is online or offline. <html> <head> </head> <body> <h1> Check internet connection status </h1> <script> function status() { if(navigator.onLine) { alert(“You are Online!”) } else { alert(“You are Offline!”) } } </script> <button onclick=”status();”>check internect connection status </button> <br> <h1> This is refresh code </h1> <a …

check internet connection status Read More »

Share

Insert Image at server and data in to mysql database

This example shows you that how to insert an image to server (localhost) and its path and file name to database along with other text information using php script and mysql database. Before we begin into programming, let’s create a folder called “uploaded” at “wamp/www/your-web-directory” and it should appear like “wamp/www/your-web-directory/uploaded”. After creating folder, now …

Insert Image at server and data in to mysql database Read More »

Share

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 …

PHP-Pagination Example Read More »

Share

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 …

Short term courses by IIM’s Read More »

Share

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: …

Submit checkbox value to MySQL Read More »

Share

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 …

Gantt chart and PERT Chart Read More »

Share

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’, ”); …

Password recovery example using php from MySQL Read More »

Share
Share
Scroll to Top