I want to delay the execution of script and i use the usleep function to make it actually calculating something before output. I want a message to be displayed while it's in delay mode. Example : Once user click submit button a message shows "Please wait we are now processing your request..." and disappear when the usleep times up and the results shows. My code :
<div>
<form id="form1" name="form1" method="post" action="">
<label>
<select name="fortune" id="fortune"><?php callcombobox('fortune',$fortune); ?></select>
</label>
<input name="submitbtn" type="submit" id="submitbtn" class="submitbutton" value="Submit" style="width:180px; height:30px;" />
</p>
</form>
</div>
<div>
<?php
echo 'Please wait while we are processing your request..';
flush();
usleep(5000000);
?>
<p class="textcolor">Your fortune is :</p>
<p class="textcolor"><?=nl2br($returnanswer)?></p>//result of fortune
</div>
I'm newbie to php and tried the code above it doesn't show the echo msg it only shows together with the result retrieved from database when times up. Anyone can help? Thanks.