Folgendes Script funktioniert unter IE aber nicht unter Firefox.
im IE funtioniert es so, wie es soll.
Kann mir einer nen Tip geben, wie ich das im Firefox hinbekomme?
Den Teil könnt ihr ignorieren, da ich am testen bin, ist das alter code der noch nicht rasugenommen wurde.
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Datei Upload</title>
<script type="text/javascript">
<!--
function copypaste()
{
var cp=document.getElementById("upload").value;
document.getElementById("filepath").value=cp;
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
if ($_POST['s']!='1'){
}ELSE{
$start=$_POST['hid'];
$path = dirname($start);
echo "Start=".$path;
}
if(($send!="1") || (isset($err_text)))
{
?>
<form action="link" method="post" enctype="multipart/form-data">
<p>Test</p>
<input type="file" id="upload" name="upload" size="50" maxlength="100000" />
<input type="text" id="filepath" name="filepath" />
<button onclick="copypaste();return false;">COPY/PASTE</button>
<input type="submit" value="Senden"/>
</form>
<?php
}
?>
</body>
</html>
Kann mir einer nen Tip geben, wie ich das im Firefox hinbekomme?
PHP:
$start=$_POST['hid'];
$path = dirname($start);
echo "Start=".$path;
Zuletzt bearbeitet von einem Moderator: