<?php
$i = 0;
while(conditionals...) {
if($i == 0)
print "<p>Show this once</p>";
print "<p>display everytime</p>";
$i++;
}
?>
Will it only show "Show it once" for the first time and only that time and show "display every time" while the while loop goes through?
source
share