LulzSec Hacked Three Websites So Far: PBS.org, Sony Pictures and Infragard.net

Just this May 2011, LulzSec hacked pbs.org followed by Sony Pictures. LulzSec or known as Lulz Security, a computer hacker group, hacked another website this month and stole 180 passwords from Infragard.net. Infragard.net is a program run by FBI to gain support through Information Technology. The aim of this program is to exchange information to FBI to crack down cyber terrorist. Infragard exist

PHP Variables

A variable is used to store any value that you like.

You can reuse variable in any block of code in your PHP script.

PHP variables must start with a dollar ($) sign.

PHP Variable Syntax

$variable_name = value;

Below is an example of how to use variables in PHP:

<?php $firstname = "John"; $lastname = "Smith"; echo $firstname . ' ' . $lastname; echo "
"; $x = 55; echo $x ?>

The above code will output the following on your web browser:

PHP Syntax

If you came from other programming languages like c/c++ and or Java, you will not have difficulty understanding PHP syntax as they have the same thing in common.

But unlike c/c++ or Java, PHP script is executed on the server and can be inserted within any HTML code and must start scripting block with <?php and end with ?>.

Below is an example of PHP file:

Web-based Payroll Application

Hi all, This is a web-based payroll application using ASP.NET and C# programming language. It showcase the use of MVC programming paradigm (not the ASP.NET MVC Framework) and Singleton programming pattern. It uses Telerik controls for ASP.NET, a powerful third party control. It also has some neat stuff like scheduling task items and asynchronous user-defined task.