• User Attivo

    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 table ron_bgprofile

    CREATE TABLE ron_bgprofile (
    id int(10) NOT NULL auto_increment,
    avlink varchar(30) NOT NULL default '',
    PRIMARY KEY (id),
    UNIQUE KEY id (id)
    ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;

    --
    -- Dumping data for table ron_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 table ron_kar

    CREATE TABLE ron_kar (
    itemurl int(10) NOT NULL auto_increment,
    title varchar(30) NOT NULL default '',
    PRIMARY KEY (id),
    UNIQUE KEY itemurl (itemurl)
    ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;

    --
    -- Dumping data for table ron_kar

    [/PHP]
    ma le ambedue tabelle non vanno.. dove sbaglio?


  • User

    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"


  • User Attivo

    a ecco.. grazie giova:)


  • User

    Prego di niente 😉