I want to know what is the best way for a links manager to add links in his db when surfing and selecting web sites.
May 10, 2000, 3:13 PM
Veteran (17240 posts)
May 10, 2000, 3:13 PM
Post #2 of 7
Views: 2003
Uh...couple suggestions:
1) Edit your database off-line with a program like MS Access or MS Excel (there are a number of Topics that address doing this). Then export the file as a tab delimited text file. Then upload the file to your server. Make sure that you update the linksid.txt file.
2) Manually enter in links information via the admin.cgi script.
3) Use the Spider Pro or the other spider program being written by Bmxer to extract links from the Web.
4) Buy a licensed copy of LINKS SQL and use the RDF ODP dump script to add links to your MySQL links table.
Regards,
------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
1) Edit your database off-line with a program like MS Access or MS Excel (there are a number of Topics that address doing this). Then export the file as a tab delimited text file. Then upload the file to your server. Make sure that you update the linksid.txt file.
2) Manually enter in links information via the admin.cgi script.
3) Use the Spider Pro or the other spider program being written by Bmxer to extract links from the Web.
4) Buy a licensed copy of LINKS SQL and use the RDF ODP dump script to add links to your MySQL links table.
Regards,
------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
May 11, 2000, 6:56 AM
Veteran (17240 posts)
May 11, 2000, 6:56 AM
Post #5 of 7
Views: 2009
Code:
'Contact Name' => [7, 'alpha', 0, 20, 1, '', ''], 'Contact Email' => [8, 'alpha', 40, 75, 1, '', '[^,]+@[^,]+\.[^,]+'],
Change the bolded 1 to 0.
Put in a default value in these fields.
Example:
Code:
'Contact Name' => [7, 'alpha', 0, 20, 1, '', ''], 'Contact Email' => [8, 'alpha', 40, 75, 1, '', '[^,]+@[^,]+\.[^,]+'],
Add default values in between the ''.
Like the following:
Code:
'Contact Name' => [7, 'alpha', 0, 20, 1, 'admin', ''], 'Contact Email' => [8, 'alpha', 40, 75, 1, 'admin@yourdomain.com', '[^,]+@[^,]+\.[^,]+'],
Good luck!
Regards,
------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
May 11, 2000, 8:57 AM
Veteran (17240 posts)
May 11, 2000, 8:57 AM
Post #7 of 7
Views: 2010
"lights"
Huh?
Anyway...you're welcome.
Regards,
------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
Huh?
Anyway...you're welcome.
Regards,
------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.