Also mein problem ist das das script auf php5 geschrieben ist oder so(hab so kaum ahnung)
aber der server vom freund wo ich eine webspace hab unterstüzt das nicht.. was kann ich da machen?
Er meint da kann man was ändern.
Die fehlermeldung:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /var/kunden/webs/sivo/www/upload.php on line 79
aber der server vom freund wo ich eine webspace hab unterstüzt das nicht.. was kann ich da machen?
Er meint da kann man was ändern.
Die fehlermeldung:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /var/kunden/webs/sivo/www/upload.php on line 79
PHP-Code:
<html>
<head>
<title>Upload</title>
</head>
<body><?
if($action){
$path = "uploads/"; // Url zum Speicher Ordner
$filename = "wichsfr0sch_";
$deindomain = "http://www.wichsfr0sch.de/
$time=time();
if ($HTTP_POST_FILES['userfile']['tmp_name']<> 'none')
{
$file = $HTTP_POST_FILES['userfile']['name'];
$temp = $HTTP_POST_FILES['userfile']['tmp_name'];
$path_parts = pathinfo($file);
$filename = "wichsfr0sch_" . $time . "." . $path_parts["extension"];
$dest = $path.$filename;
copy($temp, $dest);
echo "Die Datei ist auf dem Server! <br><br>";
echo "Url der Datei: <a href=\"$deindomain$path$filename\" target=\"_blank\">".$deindomain.$path.$filename;
echo "</a>";
}
} else { ?>
<form method="post" enctype="multipart/form-data" action="<?php echo $PHP_SELF ?>">
<input type="hidden" name="MAX_FILE_SIZE" value="400000">
<br>
<strong>File Upload</strong> <br>
<br>
<input name="userfile" type="file" size=40>
<br>
<br>
<input type="submit" name="action" value="Speichern">
</form><? } ?></body>
</html>
Kommentar