INSERT INTO search
(id
, title
, description
, url
, keywords
) VALUES ([value-1],[value-2],[value-3],[value-4],[value-5])
If you think about this statements i am getting this error #1064.
INSERT INTO search
(id
, title
, description
, url
, keywords
) VALUES ([value-1],[value-2],[value-3],[value-4],[value-5])
If you think about this statements i am getting this error #1064.
About datebase php i know how to make and insert single date that is it.Everything else i don’t know.
I think your single quotes are not correct…
[php]`[/php]
Should be
[php]’[/php]
See the difference?
i don’t see php select anywhere.
I’m sorry, you’re just not understanding what I’m trying to tell you. It must be a language barrier.
[php]INSERT INTO search
( title
, description
, url
, keywords
) VALUES ("$value-1", “$value-2”, “$value-3”, “$value-4”)[/php]
Id should be auto-increment. You do not insert that.