Was verändern damit Bilder upload funktioniert ?
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
-
Was muss ich ich hier hinzu fügen dass ich noch ein Bild in der Datenbank speichern kann ?
<?php mysql_connect("localhost", "user", "password"); mysql_select_db("databse"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Test</title> </head> <body> <?php if(isset($_POST['submit'])) { $title = $_POST['title']; $category = $_POST['keywords']; $content = $_POST['content']; mysql_query("INSERT INTO blogData (title, keywords, content) VALUES('$title', '$keywords', '$content')"); echo mysql_error(); echo "Data has been posted, click <a href='index.php'>here</a> to see it!"; }else{ ?> <?php } ?> <form action='admin.php' method='post'> Name: <input type="text" name="title" /><br /> Name wiederholen: <input type="text" name="keywords" /><br /> Content: <textarea name='content'></textarea><br /> <br /> <br /> <input type="submit" name="submit" value="Post!" /> </form> </body> </html>
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
nilsbierwirth1 schrieb:
Was muss ich ich hier hinzu fügen dass ich noch ein Bild in der Datenbank speichern kann ?
<?php mysql_connect("localhost", "user", "password"); mysql_select_db("databse"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Test</title> </head> <body> <?php if(isset($_POST['submit'])) { $title = $_POST['title']; $category = $_POST['keywords']; $content = $_POST['content']; mysql_query("INSERT INTO blogData (title, keywords, content) VALUES('$title', '$keywords', '$content')"); echo mysql_error(); echo "Data has been posted, click <a href='index.php'>here</a> to see it!"; }else{ ?> <?php } ?> <form action='admin.php' method='post'> Name: <input type="text" name="title" /><br /> Name wiederholen: <input type="text" name="keywords" /><br /> Content: <textarea name='content'></textarea><br /> <br /> <br /> <input type="submit" name="submit" value="Post!" /> </form> </body> </html>
Ehmm ja den php code muste schon selber schreiben
aber 4 augen sehe ja mehr als 2 http://www.infos24.de/mysqle/handbuch/9_mysql_binaries.htm
Beitrag zuletzt geändert: 24.8.2011 13:34:56 von schrotti19 -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage