You Got Spyware
Most victims don’t even know they contracted spyware; until it’s too late. By then spyware is sitting in the driver’s seat, and you are just along for the ride.
Most victims don’t even know they contracted spyware; until it’s too late. By then spyware is sitting in the driver’s seat, and you are just along for the ride.
The if, elseif and else statements in PHP are used to perform different actions based on different conditions.
Very often when you write code, you want to perform different actions for different decisions.
You can use conditional statements in your code to do this.
If you want to execute some code if a condition is true and another code if a condition is false, use the if….else statement.
if (condition)
{code to be executed if condition is true};
else
{code to be executed if condition is false};
The following example if the current day is Friday will output “Have a nice weekend. See you on Monday” , otherwise it will output “Hello. Have a nice day”:
<html>
<body>
<?php
$d=date(“D”);
if ($d==”Fri”)
{
echo “Have a nice weekend. “;
echo “See you on Monday”;
}
else
{
echo “Hello. “;
echo “Have a nice day”;
}
?>
</body>
</html>