hno Posted August 4, 2010 Share Posted August 4, 2010 HI, I'm making a simple search engine for my university.What I want to do is that the user enter a url and the system begin to retrieve all of the links in that page and then open them one by one and store the keyword and description of them in the database.I have wrote all of them except storing the data which I have no idea about it.I mean about the structure of the database and tables.Can somebody helps me please?I want to know your idea about the structure of the database and tables. My yahoo id:hno_abutorab2005@yahoo.com mail:hno2005@gmail.com Thank you very much Quote Link to comment https://forums.phpfreaks.com/topic/209744-need-a-partnership/ Share on other sites More sharing options...
dreamwest Posted August 4, 2010 Share Posted August 4, 2010 url: varchar 255 id: bigint 11 desc: text meta: varchar 255 scan: tinyint 1 , default 0 (0 for url not in database already, 1 for it being there) index the desc and meta fields otherwise make desc fulltext and have a search engine type results based on how many times the keyword is in the description (content) Quote Link to comment https://forums.phpfreaks.com/topic/209744-need-a-partnership/#findComment-1094944 Share on other sites More sharing options...
hno Posted August 4, 2010 Author Share Posted August 4, 2010 url: varchar 255 id: bigint 11 desc: text meta: varchar 255 scan: tinyint 1 , default 0 (0 for url not in database already, 1 for it being there) index the desc and meta fields otherwise make desc fulltext and have a search engine type results based on how many times the keyword is in the description (content) Thank you very much. Can I have your contact information?Like skype,yahoo id,facebook,twitter. I want to know your idea. Quote Link to comment https://forums.phpfreaks.com/topic/209744-need-a-partnership/#findComment-1094948 Share on other sites More sharing options...
dreamwest Posted August 4, 2010 Share Posted August 4, 2010 Dont have any of them. If you want to make a search engine start with this crawler, it can index 1000's of urls in seconds http://www.wizecho.com/nav=scripts&s=spider Quote Link to comment https://forums.phpfreaks.com/topic/209744-need-a-partnership/#findComment-1094956 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.