natalifa
Fri 20 October 2006, 08:22 pm GMT +0200
Hi
I want use "Easy PHP Upload" but i need Mysql - Tabels?
Sry my Eng
no why do you think that?
Help
upload_db_example.php - why is that?
// You need to modify the settings below...
$conn = mysql_connect("localhost", "user", "pw") or die(mysql_error());
mysql_select_db("database", $conn) or die(mysql_error());
// the code to create the test table
mysql_query("
CREATE TABLE IF NOT EXISTS file_table (
id INT NOT NULL AUTO_INCREMENT,
file_name VARCHAR( 100 ) NOT NULL,
PRIMARY KEY (id))") or die(mysql_error());