Using the Right Registry Cleaner Tools

The Windows registry is a complex part of your computers operating system. The registry is designed to hold information on all of your software programs, including Windows it’s self. Every time you install or uninstall a piece of software, the details of that installation are written to the registry.

“Warning – Spyware Threat Has Been Detected on Your PC” – Does This Message Look Familiar?

If you use your computer to surf the internet there is an almost certain chance it will become infected with spyware at some point. In fact a recent CNN study determined that 90% of computers had some kind of spyware installed on them. When you get the message – Warning: spyware threat has been detected on your pc, it probably means your computer is infected.

Using a Free Malware Remover – Read This Before You Download a Free Malware Remover

Thinking of downloading a free malware remover? Before you do anything please read this or risk putting your computer in serious danger!

Watch Internet TV on Your PC

The internet is growing at a faster pace. It has totally changed our way of watching tv. Now we can enjoy uninterrupted tv on our pc with internet tv.

Implementing Encryption Without Making a Peanut Butter Sandwich

The use of many software programs and network concepts to secure data in an enterprise is like making a peanut butter sandwich. The programs like the bread will be separated by the peanut butter layer which is the loophole for hackers to steal your data.

The Microsoft System Configuration Utility

Here we take a look at the The Microsoft System Configuration Utility and see how it can be used to stop unnecessary programs from starting automatically when we turn on a PC. This will improve the performance of our computer.

PHP $_GET and $_POST at php form

PHP $_GET

The $_GET variable is used to collect values from a form with method=”get”

Information sent from a form with the GET method is visible to everyone (it will be displayed in the browser’s address bar)

<html>
<body>
<form action=”welcome.php” method=”get“>
Name: <input type=”text” name=”name” />
Age: <input type=”text” name=”age” />
<input type=”submit” />
</form>
</body>
</html>

When we input Johnson at name and 30 at age, then clicks the Submit button, the URL sent could look something like this:

http://yourdomain/welcome.php?name=Johnson&age=30

For output we must create file php : welcome.php with code :

<html>
<body>
Welcome <?php echo $_GET["name"]; ?>.<br />
You are <?php echo $_GET["age"]; ?> years old!
</body>
</html>

Output code <?php echo $_GET["name"]; ?> where name must same with form <input type=”text” name=”name” />

output welcome.php will shown like this

Welcome Johnson.
You are 30 years old!

PHP $_POST

(more…)

Function Hide variable / Change Variable

This function for change some variable into other variable.

Example : we want to change phone number : 6281234123457 into 628123412XXXX

Example :

<?php
function hide($rp)
{
$hidee = “”;
$p = strlen($rp);
$hidee = “.” . substr($rp,-4) . $hidee;
$l = strlen($rp) – 4;
$rp = substr($rp,0,$l);
$p = strlen($rp);

$hidee = $rp . XXXX;
return $hidee;
}

$phone =”6281234123457″;
$phonehide = hide($phone);
echo”$phonehide”;
?>

Result fot this :

628123412XXXX

Hope you like this function

Xoftspyse Software Review

Spyware and AdWare are parasites that have the ability to track your browsing habits and let companies know what you are doing and if you have ever had either a Spyware or AdWare on your computer, you would know how frustrating it can sometimes be. Xoftspyse is a software which claims it would help protect you from Spyware, AdWare, malware and other parasites. Much has been said about this software but here is a review of what to expect from it.

What Can We Do For Junk Files in Our System?

Where did the junk files come from? So what can we do about these junk files?