<?
php
function greet($name, $color){
echo "<p>My Name is $name and my Favourite Color is $color </p>";
}
greet('john', 'blue');
greet('jane','green');
?>
<h1><?php bloginfo('name'); ?></h1>
<p><?php bloginfo('description'); ?></p>
<?php
$myName='Shahid'
?>
<p>Hi! my name is <?php echo $myName; ?></p>
<?php
$names= array('Brad','john','jane','Meowsalot');
?>
<p>Hi! my name is <?php echo $names[0]; ?></p>
<?php
$numbers= array('This is the number from ');
?>
<p> <?php echo $numbers[0]; ?></p>
<?php
$count =1;
while($count <101){
echo "<li>$count</li>";
$count++;
}
?>
<?php
$names= array('Brad','john','jane','Meowsalot');
$count =0;
while($count < count ($names)) {
echo "<li> Hello! My Name is $names[$count] </li>";
$count++;
?>