dolito: Datei-Upload

Beitrag lesen

Hallo,

<form action="go.php" method="GET">

sollte hier nicht irgendwas von 'enctype="..."' stehen?

Sie mal hier nach:
http://de.selfhtml.org/html/formulare/datei_upload.htm

<input type="file" name="Bild" value="Bild"></input>

Habe mich mit Dateiuploads noch nie so beschäftigt, aber was soll das 'value="Bild"'?

$Bild = "Bild";

Was soll das??? Sorry, aber vielleicht hab ich ja auch nur kein Plan!

$info = getimagesize($bild);echo "Bildbreite: " .
$info[0]; echo "<br>";
echo "Bildhöhe: " . $info[1]; echo "<br>";echo "Grafik-Typ: " . $info[2];
echo "<br>";
echo "HTML-Zeichenkette: " . $info[3];
?>

Versuch es mal mit dem hier:

<?php

$info = getimagesize($_POST['Bild']);
echo...usw.

?>

MFG dolito