I want to issue a popup or something to remind users to perform a second action after the first action is done. The first action is
fwrite($fp, $str);
$read = fread($fp, 16);
$read = explode(";", $read);
if ($read[0] != "OK") {
echo "Write Error";
fclose($fp);
} else {
$send = substr($str, 3);
verification($send, $fp);
}
and the second action is verification()
.
Before the verification()
, I want to make something that reminds user that the first action is finished. Either a popup or something like that.