Buonasera,
chiedo scusa per il titolo un po' banale, comunque...ho questo script realizzato da me:
Codice PHP:
<?php if(empty($_POST['url'])){ ?>
<center><form action="download-video-da-youtube.php" method="post"><fieldset><legend>Download Video Da Youtube</legend>
<span style="font-size:9pt">URL</span><br />
<input type="text" name="url" value="" size="50" /><br /><input type="submit" value="Download Video" /></fieldset></form></center>
<?php }else{
$vai = $_POST['URL']."/file.zip";
Header("Location: $download"); ?>
<?php } ?>
Attualmente ho risolto in questo modo:
Codice PHP:
<?php if(empty($_POST['url'])){ ?>
<center><form action="download-video-da-youtube.php" method="post"><fieldset><legend>Download Video Da Youtube</legend>
<span style="font-size:9pt">URL</span><br />
<input type="text" name="url" value="" size="50" /><br /><input type="submit" value="Download Video" /></fieldset></form></center>
<?php }else{
$vai = $_POST['URL']."/file.zip";
echo "<meta http-equiv=\"Refresh\" content=\"0; url=".$download."\" />"; ?>
<?php } ?>
Però l'inconveniente e che il codice che utilizzo attualmente visualizza (in Internet Explorer) la barra di contenuto bloccato.
Come risolvo?