Skip to content

Instantly share code, notes, and snippets.

@guibranco
Created December 31, 2018 16:51
Show Gist options
  • Save guibranco/1655c8b97b99ba4b12e6a17792cd37e5 to your computer and use it in GitHub Desktop.
Save guibranco/1655c8b97b99ba4b12e6a17792cd37e5 to your computer and use it in GitHub Desktop.
Download e mensagem - PHP Brasil - Bruno Caldeira - https://www.facebook.com/groups/142151625841770/permalink/2099550320101881/
<?php
$acao = "inicio";
if(isset($_GET["acao"])
$acao = $_GET["acao"];
switch($acao){
case "inicio":
echo "<a href='?acao=download'>Clique aqui para download do arquivo arquivoXPTO.txt</a>";
echo "<script>setTimeout(function(){ window.location.href= '?acao=mensagem'; }, 10000);</script>";
break;
case "download":
download("arquivoXPTO.txt");
//a função download seria o código que você já tem para download!
break;
case "mensagem":
echo "<span>Seu download está em andamento, bla bla bla</spa>";
break;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment