Sorry for not explaining to good. I need to learn more english also.
ok, this is my database(one of the tables):
`seo` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`actor_nume` text COLLATE utf8_unicode_ci NOT NULL,
`album_nume` text COLLATE utf8_unicode_ci NOT NULL,
`page_title` text COLLATE utf8_unicode_ci NOT NULL,
`meta_keywords` text COLLATE utf8_unicode_ci NOT NULL,
`meta_description` text COLLATE utf8_unicode_ci NOT NULL,
`image` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
`alt_tag` text COLLATE utf8_unicode_ci NOT NULL,
`cloud_tags` text COLLATE utf8_unicode_ci NOT NULL,
`album_description` text COLLATE utf8_unicode_ci NOT NULL,
`actor_description` text COLLATE utf8_unicode_ci NOT NULL,
`h1` text COLLATE utf8_unicode_ci NOT NULL,
`title` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
my index.php is under root folder
the pages which will load in index.php are under root/pagini/
when the pages from root/pagini/ will load in my index.php(under root), i want the information from seo table to be 'echoed' in my index.php, but to be the right data for each record.
the pages under root/pagini/ have sql queries also, getting different records from the database.
Bookmarks