|
-
Aug 14th, 2006, 12:10 AM
#1
Thread Starter
Hyperactive Member
Indexing Like Dictionary
I would like to write a program that can index all the names in the databases. Is there any function to do that ? If not then please give me some highlights on the issue. It will be too good if I able to get source code.
-
Aug 14th, 2006, 10:14 AM
#2
Re: Indexing Like Dictionary
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Aug 15th, 2006, 01:11 AM
#3
Thread Starter
Hyperactive Member
Re: Indexing Like Dictionary
Just like dictionary indexing. Such as
A
AB
ABC
ABCD
-
Aug 15th, 2006, 07:02 AM
#4
Re: Indexing Like Dictionary
-
Aug 16th, 2006, 03:07 AM
#5
Re: Indexing Like Dictionary
 Originally Posted by systech44
I would like to write a program that can index all the names in the databases. Is there any function to do that ? If not then please give me some highlights on the issue. It will be too good if I able to get source code.
Many databases have facility called Indexes. You should look into them
-
Aug 17th, 2006, 02:25 AM
#6
Thread Starter
Hyperactive Member
Re: Indexing Like Dictionary
I would like make it from PHP. What is the easiest way to do it ? I need some guidelines. Please give me some idea on it.
-
Aug 17th, 2006, 03:03 AM
#7
Re: Indexing Like Dictionary
An index is simply an ordered list of items where each item points to the location of an item in an unrodered/more complex collection of items.
So, you make your index of names, but what is each entry in the index going to point to? A file? A database record? Nothing? Also, why do it in PHP when it is done a lot more efficiently using a database?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|