wumble
New member
Nabend!
habe folgendes Problem: Habe ein Multi-Upload programmiert das mehrere Dateien hochladen soll. Im Firefox funzt das auch, aber nicht im IE?
Hab mir das Skript nochmal angeschaut, und auch google bemüht, aber bin da echt überfragt. Vor allem weil das ganze ja über PHP läuft, kein javascript oder so, da dachte ich sollte doch das gleiche beim Server ankommen.
Naja, also hier mal der Code vom Formular zum Upload:
*edit: gelöscht ; siehe unten
*
So hier der Code den der Browser ausgibt:
für jede Hilfe oder Anregung wäre ich sehr dankbar!
habe folgendes Problem: Habe ein Multi-Upload programmiert das mehrere Dateien hochladen soll. Im Firefox funzt das auch, aber nicht im IE?
Hab mir das Skript nochmal angeschaut, und auch google bemüht, aber bin da echt überfragt. Vor allem weil das ganze ja über PHP läuft, kein javascript oder so, da dachte ich sollte doch das gleiche beim Server ankommen.
Naja, also hier mal der Code vom Formular zum Upload:
*edit: gelöscht ; siehe unten
So hier der Code den der Browser ausgibt:
Code:
<!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" xml:lang="en">
<head>
<title>Multi-Upload</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="css/page.css" rel="stylesheet" type="text/css" />
<link href="css/navi.css" rel="stylesheet" type="text/css" />
<link href="css/elements.css" rel="stylesheet" type="text/css" />
<link href="css/classes_main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="page">
<div id="header">
<img src="gfx/header.jpg" alt="header.jpg" /> </div>
<div id="navi_head">
<div class="navi_head_block">
<p class="news_head"></p>
<p class="navi_headline news_link">
<a href="?section=news">NEWS</a>
</p>
</div>
<div class="navi_head_block">
<p class="files_head"></p>
<p class="navi_headline files_link">
<a href="?section=upload">DATEIEN</a>
</p>
</div>
<div class="navi_head_block">
<p class="other_head"></p>
<p class="navi_headline other_link">
<a href="?section=links">SONSTIGES</a>
</p>
</div>
<div class="navi_head_block">
<p class="settings_head"></p>
<p class="navi_headline settings_link">
<a href="?section=hp_settings">EINSTELLUNGEN</a>
</p>
</div>
<div class="navi_head_block">
<p class="options_head"></p>
<p class="navi_headline options_link">
<a href="?section=pw_edit">OPTIONEN</a>
</p>
</div>
<br style="clear:both;" /> </div>
<div id="navi_sub" class="files_link">
<p class="files_head"></p><br style="clear:both;" />
<a href="?section=upload">Upload</a><br />
<a href="?section=files">Dateien</a><br />
<a href="?section=gallery">Gallerie</a>
</div> <div id="content">
<h2 class="section_headline">Upload</h2><br />
<br />
<form action="?section=upload" enctype="multipart/form-data" method="post">
Anzahl der Uploads<br />
<input type='text' name='upload_number' maxlength='2' value='3' /><br />
<br />
<br /><input type='file' name='file1' value='' />
<br /><input type='file' name='file2' value='' />
<br /><input type='file' name='file3' value='' /><br />
<span class="error">
</span><br />
<br />
<input type='submit' name='upload_new' value='Hochladen' />
</form> </div><br style="clear:both;" />
<div id="footer">
pekko v. b1.0 </div>
</div>
</body>
</html>
für jede Hilfe oder Anregung wäre ich sehr dankbar!
Zuletzt bearbeitet: