Created
December 31, 2018 16:51
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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