Bitte um Hilfe bei einem MINI Upload script...

Flextone

Erfahrenes Mitglied
Hi

ich habe ein Miniupload Script gemacht und? Natürlich gehts nicht :(

Ich poste mal den HTML und den SQL Teil. Ich weiß mir keinen rat mehr. Alle andere Uploadscripts sind zu komplex und mein Buch kann es mir auch nicht verraten.


Der Spalten Namen in den es eingetragen werden soll ist 'pimg'.

Formhead:
HTML:
<form action="<?php echo $PHP_SELF; ?>?section=mem01" method="post" enctype="multipart/form-data">
<input type="hidden" name="action" value="mem_add">


HTML:
  Profilupload:<br>
  <input type="file" name="datei">


Function:

PHP:
	if($_POST[action] == "mem_add"){ 	
	$pimg = $_FILES['datei']['name'];
	move_uploaded_file($_FILES['datei']['tmp_name'],"../files/up/".$pimg);
	$eintrag = "INSERT INTO u_member (nick, name, origin, location, age, email, cpu, mouse, mousepad, headphones, connection, game, guid, job, pimg) VALUES ('$nick', '$name', '$origin', '$location', '$age', '$email', '$cpu', '$mouse', '$mousepad', '$headphones', '$connection', '$game', '$guid', '$job', '$pimg')";
	$eintragen = mysql_query($eintrag);
	header("LOCATION: ?section=mem01");
	}
 
Zurück