Nieuw lid |
|
Hé specialisten..
Met dit uploadscriptje wil ik doormiddel van een gif-afbeelding een progressbar maken.
Echter mijn gifje valt stil tijdens de php acktie.. en als ik het test met firefox en opera werkt het wel, het ligt dus aan IE!
IS hier een oplossing voor??
Dit is mijn scriptje:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>upload</title>
</head>
<body>
<h2>Bestanden opladen:</h2>
<p>
<?php
$map = "upload/";
$upload_file = basename( $_FILES['uploaded']['name']) ;
$target = $map . $upload_file ;
$ok=1;
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target))
{
echo "Het bestand " . $upload_file . " is opgeladen.";
}
else
?>
</p>
<form enctype="multipart/form-data" action="upload.php" method="POST">
Kies een bestand:
<input name="uploaded" type="file" /><br />
<input type="submit" value="Opladen"
onclick="document.getElementById('bezig').style.visibility='visible'" />
</form>
<br />
<div id="bezig" style="visibility: hidden;">
<h1>Bezig met uploaden..... <img src="progressbar4.gif" width="55" height="55" align="absmiddle" /></h1>
</div>
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>upload</title> </head> <body> <h2>Bestanden opladen:</h2> <p> <?php $map = "upload/"; $upload_file = basename( $_FILES['uploaded']['name']) ; $target = $map . $upload_file ; $ok=1; { echo "Het bestand " . $upload_file . " is opgeladen."; } else ?> </p> <form enctype="multipart/form-data" action="upload.php" method="POST"> Kies een bestand: <input name="uploaded" type="file" /><br /> <input type="submit" value="Opladen" onclick="document.getElementById('bezig').style.visibility='visible'" /> </form> <br /> <div id="bezig" style="visibility: hidden;"> <h1>Bezig met uploaden..... <img src="progressbar4.gif" width="55" height="55" align="absmiddle" /></h1> </div> </form> </body> </html>
|