Author name: SKB

HTML5 Validation

Following example states the use of HTML5 control form validation. <!DOCTYPE html> <html> <body> <h1> HTML5 Form Validation </h1> <hr> <form name=f1> Enter name: <input type=”text” pattern=”[a-zA-Z]+” title=”Your name without space” required /> </br> Email id: <input type=”email” required /> </br> WebAddress: <input type=”url” required/> starts with http:// </br> Phone number: <input type=”tel” pattern=”^\d{2}-\d{10}” required/> […]

Share

HTML5 Validation Read More »

Top MBA (Management) Colleges in India

Indian Institute of Management, Bangalore Indian Institute of Management, Ahmedabad Indian Institute of Management, Calcutta Department of Management Studies, Indian Institute of Technology, Delhi Department of Management Studies, Indian Institute of Technology, Madras Indian Institute of Management, Lucknow XLRI – Xavier School of Management, Jamshedpur Indian Institute of Management, Kozhikode Indian Institute of Technology, Roorkee

Share

Top MBA (Management) Colleges in India Read More »

Top Engineering colleges in india

  Indian Institute of Technology, Madras Indian Institute of Technology, Delhi Indian Institute of Technology, Bombay Indian Institute of Technology, Kharagpur Indian Institute of Technology, Kanpur VIT University, Vellore Thiagarajar College of Engineering, Madurai SASTRA University, Thanjavur PSG College of Technology, Coimbatore National Institute of Technology, Warangal National Institute of Technology, Tiruchirappalli National Institute of

Share

Top Engineering colleges in india Read More »

IT Engineer Responsibilities

1) Software / Hardware installing, supporting and maintaining infrastructure. 2) Managing company emails, anti-spam and virus protection. 3) Creating user accounts, permissions and passwords. 4) Monitoring usage of network . 5) Ensuring the most cost-effective and efficient use of servers / machines. 6) Providing IT solutions to business and management problems. 7) Ensuring that all IT equipment

Share

IT Engineer Responsibilities Read More »

Domain connectivity

In this tutorial you’ll able to connect your windows xp/7/8 PC to server machine like windows server 2008 R2 etc. First of all  on Windows XP PC settings : Put the IP address on the windows XP  PC. To do this follow the steps. 1. Right click on “My Network places” icon on desktop and

Share

Domain connectivity Read More »

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 »

Share
Scroll to Top