hello,
I will be really gratefull if any one could direct me or make me a simple php search script which will read the following content in my mysql file i.e.
CREATE TABLE IF NOT EXISTS tblLinks (
`ID` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`URL` VARCHAR(255) UNIQUE NOT NULL,
`Title` VARCHAR(255),
`Keywords` VARCHAR(255),
`Description` VARCHAR(255),
`ModifiedDate` DATE DEFAULT '0000-00-00' NOT NULL) TYPE=MyISAM;
INSERT IGNORE INTO tblLinks (`URL`,`Title`,`Keywords`,`Description`,`ModifiedD ate`) VALUES
('http://www.page1.com','Page1_Title','Page1_Keywords','Pag e1_Description',CURDATE()),
('http://www.page2.com','Page2_Title','Page2_Keywords','Pag e2_Description',CURDATE()),
('http://www.page3.com','Page3_Title','Page3_Keywords','Pag e3_Description',CURDATE())
Search display would be like google - only 10 results per page and than next previous page.
Thanks