51. What will be the output of the following PHP code ?
<?php
$i = "";
while ($i = 10)
{
print "hi";
}
print "hello";
?>
<?php
$i = "";
while ($i = 10)
{
print "hi";
}
print "hello";
?>