i have a form, say like this :
<form name="form1" action="" method="post">
<input type="text" name="tfcari" />
<input type="submit" name="btcari" />
</form>
<?php
if (isset($_POST['btcari'])) {
echo $_POST['tfcari'];
?>
how to doing like this :
click submit - echo text - wait for 5 seconds - echo text (automatically) - wait for 5 seconds - echo text (automatically) - ...
thanks all.