- Home
- Categorie
- Coding e Sistemistica
- PHP
- Costruire tabella
-
Costruire tabella
Ciao a tutti sto cercando di costriure 2 tabelle, che dovrei importare nel database.. la prima è questa:
ron_bgprofile
la sua query:
[PHP]$sql = "SELECT id, avlink FROM ron_bgprofile ORDER BY id DESC LIMIT $limit_start, $items_per_page[/PHP]
e la tabella che sto facendo:
[PHP]--
-- Table structure for tableron_bgprofile
CREATE TABLE
ron_bgprofile
(
id
int(10) NOT NULL auto_increment,
avlink
varchar(30) NOT NULL default '',
PRIMARY KEY (id
),
UNIQUE KEYid
(id
)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;--
-- Dumping data for tableron_bgprofile
[/PHP]
e l'altra tabella è questa:
ron_kar
la sua query:
[PHP]$avlnk = mysql_fetch_array(mysql_query("SELECT itemurl,title FROM ron_kar WHERE id='".$avid."'"));
[/PHP]
e la tabella che sto facendo:
[PHP]--
-- Table structure for tableron_kar
CREATE TABLE
ron_kar
(
itemurl
int(10) NOT NULL auto_increment,
title
varchar(30) NOT NULL default '',
PRIMARY KEY (id
),
UNIQUE KEYitemurl
(itemurl
)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;--
-- Dumping data for tableron_kar
[/PHP]
ma le ambedue tabelle non vanno.. dove sbaglio?
-
Ciao ho provato a fare la prima tabella e non ha errori, la seconda hai sbagliato "PRIMARY KEY (
id
)" al posto di "id" devi mettere "itemurl"
-
a ecco.. grazie giova:)
-
Prego di niente