0
I am importing an sql with the following code:
CREATE TABLE blog (
id INT PRIMARY KEY AUTO_INCREMENT,
title VARCHAR(250) NOT NULL,
body TEXT NOT NULL,
url VARCHAR(250) NOT NULL);
But is returning the following error:
Notice in . /import.php#704
Undefined variable: import_text
Backtrace
error has nothing to do with your sql query..
– FábioArsénio
The SQL code shown has no error. The error displayed is related to your PHP code.
– vmartins