<?php
$variableName = "Yes";
if($variableName == "Yes")
{
echo "Your variable Name is".$variableName;
}
?>
output:
Your variable Name isYes
$variableName = "Yes";
if($variableName == "Yes")
{
echo "Your variable Name is".$variableName;
}
?>
output:
Your variable Name isYes
No comments:
Post a Comment