Posts by Guhh • 181 points
3 posts
-
1
votes1
answer168
views -
2
votes1
answer40
viewsA: Syntax error - URL return
the code: <?php if(isset($_GET["url"])){ $url = $_GET["url"]; } ?> Try removing the last brackets }, is where the error lies :)
-
2
votes1
answer260
viewsA: Problem with downloading FTP/PHP files
Try using the following script <?php set_time_limit(0); // Define o tempo máximo de execução em 0 para as conexões lentas $arquivoLocal = '/pasta/do/arquivo.zip'; // caminho absoluto do arquivo…