Einzelnen Beitrag anzeigen
Alt 20.05.2003, 13:37   #3
dub
Veteran
 
Registriert seit: 28.01.2003
Alter: 41
Beiträge: 321


dub eine Nachricht über ICQ schicken
Standard

Ich hab einfach keine Funktion gefunden, die sowas durchführen würde.

Würde es denn so Funktionieren?

HTML:
Code:
<html>
  <head>
    <title>foo bar</title>
  <head>
  <body>
    <form action="foobar.php" method="post">
      <input type="file" name="foo">
      <input type="submit">
    </form>
  </body>
</html>
PHP
Code:
<?php

$sql = "INSERT INTO foo_bar (file) VALUES ('" . $_POST['foo'] . "');";
mysql_query($sql);

?>
#Hannes#
dub ist offline   Mit Zitat antworten