WordPress on Local server

How to run / create a blog/website using WordPress on local pc/laptop?. Brief About WordPress:  It is a CMS(Content Management System), The most powerful open source plat-form for creating blogs and professional websites with over 34% of entire web share out of over 1 billion websites world wide. Over 48,000 plug-ins to use and enhance your […]

Share

WordPress on Local server Read More »

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();

Share

CPP Basic Programs-List1 Read More »

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

Share

Work from home Read More »

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

Share

check internet connection status Read More »

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

Share

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

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 »

Share
Scroll to Top