Benim veritabanına içerik sunar ama yerine ben oldukça Textfield kullanmak istiyorum tarihini seçmek için aşağı açılır bir menü kullanarak daha karar bir form yaratmaya çalışıyoruz. Benim tablo oluşturma dosyası yapmak gerekir ne gibi değişiklikler merak ediyordum.
<?php mysql_connect ('localhost', 'root', 'root') ;
mysql_select_db ('tmlblog');
$sql = "CREATE TABLE php_blog (
id int(20) NOT NULL auto_increment,
timestamp int(20) NOT NULL,
title varchar(255) NOT NULL,
entry longtext NOT NULL,
PRIMARY KEY (id)
)";
$result = mysql_query($sql) or print ("Can't create the table 'php_blog' in the database.<br />" . $sql . "<br />" . mysql_error());
mysql_close();
if ($result != false) {
echo "Table 'php_blog' was successfully created.";
}
?>
Ben bir textfield aracılığıyla girmek için düzenlemek gerekir damgası bulunuyor. Başlık ve Giriş anda zaten bu yöntemle girilir ediliyor.
Whenever I use my form to update the database I get the following error message:
Can't insert into table php_blog. INSERT INTO php_blog (time_stamp,title,entry,) VALUES ('1270140960','kjkkj','jkjkjk') You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') VALUES ('1270140960','kjkkj','jkjkjk')' at line 1