Tuesday, February 24, 2015

Preventing SQL Injection using PHP

The strings in the input boxes can be sent with malicious contents to trigger an unwanted interaction with the database, so it is important to clean the input strings before  passing them to the database engine to prevent SQL injection. The following PHP code sample uses the inbuilt functions stripslashes and mysql_real_escape_string to ensure the values in the $_POST array...

Use Clock function in your site

A clock on your home page? Why, yes! I'll have one too, please. The thing at the top center of the page is what you can get here. It's a little JavaScript (not an applet) that loads into your browser, reads the time and then displays it. Pretty slick, eh? Please note that the script reads the time the browser is keeping; the time will be right in all time zones providing the viewer...

Monday, February 23, 2015

Required messaging without complex

This is simple "required  messaging"  to complete the filling form process, once you forget the column to fill data, it will ask to fill the specific column in the same page.  <html> <head> </head> <body> <?php if(isset($_POST['submit'])){ if(empty($_POST['fname'])){ echo "First Name is Required"; } if(empty($_POST['lname'])){ echo...

Friday, February 20, 2015

10 Reasons Why Software Project Estimates Fail

Think about the web and software projects you’ve completed. How many were delivered on time and on budget? How many estimates were accurate? IT projects are notorious for over-running, and here are several reasons why it occurs… 1. The project is poorly scoped How can you estimate time on a project when you don’t know what that project is? It’s rare to find a client who appreciates...

Wednesday, February 11, 2015

Best Utilities for boost

Every one having at least a PC or laptop in your working environment  you have installed more softwares in everyday but you do not know those softwares makes your computer garbage in that case your computer works slow, therefore find out a good solution and make sure the most...

Change your Desktop Environment

XWidget is a free desktop customization platform. It's light, handy with powerful visual widget editor and very smooth animation. Download : xwidget Rrquirement: Windows Vista Windows 7/8/...

Tuesday, February 10, 2015

Sophisticated Web generation continued

The social media is a good platform for Contents creation by many end users, not only social media even a single website provide comment service to their viewers about their product or something like that. Web 2.0 basically refers to the transition from    HTML web pages...

Sophisticated Web generation

When we talk about the web generation it has a long path, in the world everyone like or unlike interact with the internet, it is going to end-users without living the internet, now we are in the crucial web generation which is web 2.0. But already 3.0 came as a sophisticated...

Monday, February 9, 2015

The concept of Socket programming

A socket is one of the most fundamental technologies of computer networking. Sockets allow applications to communicate using standard mechanisms built into network hardware and operating systems. Although network software may seem to be a relatively new "Web" phenomenon, socket technology actually has been employed for roughly two decades. Software applications that rely...