PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > alt.php > Glossary Script
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Glossary Script

Réponse
 
LinkBack Outils de la discussion
Vieux 02/09/2007, 15h34   #1
Kye
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Glossary Script

Can anybody point me towards a simple PHP/MySQL script for running a
glossary of terms on a website??? For an extremely simple script I have been
finding it very difficult to actually locate one.

--
Yours Sincerely
Kye


  Réponse avec citation
Vieux 02/09/2007, 19h18   #2
Tom
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

On Sun, 02 Sep 2007 14:34:07 GMT, Kye wrote...
>
>Can anybody point me towards a simple PHP/MySQL script for running a
>glossary of terms on a website??? For an extremely simple script I have been
>finding it very difficult to actually locate one.
>



If I search around the Internet I can come up with lots of existing glossaries,
but not much on building one from scratch.

Many glossaries I've seen are related to a specific topic. It may just be easier
to build one yourself than trying to find one to reuse. That way you can define
the output, whether it's a search field, selecting from a menu, or if it's small
enough just output all the data to a web page.

Tom
--
Newsguy.com
Unlimited Accounts
Now supporting 32 concurrent connections

  Réponse avec citation
Vieux 02/09/2007, 19h51   #3
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

Tom wrote:
> On Sun, 02 Sep 2007 14:34:07 GMT, Kye wrote...
>> Can anybody point me towards a simple PHP/MySQL script for running a
>> glossary of terms on a website??? For an extremely simple script I have been
>> finding it very difficult to actually locate one.
>>

>
>
> If I search around the Internet I can come up with lots of existing glossaries,
> but not much on building one from scratch.
>
> Many glossaries I've seen are related to a specific topic. It may just be easier
> to build one yourself than trying to find one to reuse. That way you can define
> the output, whether it's a search field, selecting from a menu, or if it's small
> enough just output all the data to a web page.
>
> Tom


Tom,

When I read this the first time, I thought the same thing. I've built
glossaries before, and they're basically just a MySQL lookup. Some
pretty basic stuff. It shouldn't take more than an hour or to to build
from scratch; probably take longer than that to find a script, evaluate
it and merge it into existing pages.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 03/09/2007, 02h30   #4
Kye
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

As I am far from good enough to be called even a newbie at PHP, are there
any suggestions as to the best methods to use for making a glossary
script???

--
Yours Sincerely
Kye

"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:f4CdnTOzweMDm0bbnZ2dnUVZ_g2dnZ2d@comcast.com. ..
> Tom wrote:
>> On Sun, 02 Sep 2007 14:34:07 GMT, Kye wrote...
>>> Can anybody point me towards a simple PHP/MySQL script for running a
>>> glossary of terms on a website??? For an extremely simple script I have
>>> been finding it very difficult to actually locate one.
>>>

>>
>>
>> If I search around the Internet I can come up with lots of existing
>> glossaries,
>> but not much on building one from scratch.
>>
>> Many glossaries I've seen are related to a specific topic. It may just be
>> easier
>> to build one yourself than trying to find one to reuse. That way you can
>> define
>> the output, whether it's a search field, selecting from a menu, or if
>> it's small
>> enough just output all the data to a web page.
>>
>> Tom

>
> Tom,
>
> When I read this the first time, I thought the same thing. I've built
> glossaries before, and they're basically just a MySQL lookup. Some pretty
> basic stuff. It shouldn't take more than an hour or to to build from
> scratch; probably take longer than that to find a script, evaluate it and
> merge it into existing pages.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstucklex@attglobal.net
> ==================



  Réponse avec citation
Vieux 03/09/2007, 02h32   #5
Kye
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

Effectively I was just wanting to start with it dumping results sorted
alphabetically (with each alphabetic and numeric character having its own
page of results) to a web-page. A search field would be a later addition,
along with a "submit a phrase for definition" field.

--
Yours Sincerely
Kye



"Tom" <tom@to.com> wrote in message news:fbeup9023vh@drn.newsguy.com...
> On Sun, 02 Sep 2007 14:34:07 GMT, Kye wrote...
>>
>>Can anybody point me towards a simple PHP/MySQL script for running a
>>glossary of terms on a website??? For an extremely simple script I have
>>been
>>finding it very difficult to actually locate one.
>>

>
>
> If I search around the Internet I can come up with lots of existing
> glossaries,
> but not much on building one from scratch.
>
> Many glossaries I've seen are related to a specific topic. It may just be
> easier
> to build one yourself than trying to find one to reuse. That way you can
> define
> the output, whether it's a search field, selecting from a menu, or if it's
> small
> enough just output all the data to a web page.
>
> Tom
> --
> Newsguy.com
> Unlimited Accounts
> Now supporting 32 concurrent connections
>



  Réponse avec citation
Vieux 03/09/2007, 02h47   #6
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

Kye wrote:
> As I am far from good enough to be called even a newbie at PHP, are there
> any suggestions as to the best methods to use for making a glossary
> script???
>


To start with, search on database normalization to get some ideas on how
to design a database. Then figure out how you want to structure your code.

This can be a great learning experience for you. It's not difficult, but
it brings several areas together to you.

I know this is very high level - but you'll learn more trying to do it
yourself than if someone gives you the code - or even structures it for
you. Try it yourself, and when you get stuck, ask specific questions
here.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 03/09/2007, 02h59   #7
Kye
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

Sounds like a good idea. Thanks for the advise Jerry, Expect a great many
"doh!" style queries

--
Yours Sincerely
Kye


"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:0cmdnU6t17dy-kbbnZ2dnUVZ_gadnZ2d@comcast.com...
> Kye wrote:
>> As I am far from good enough to be called even a newbie at PHP, are there
>> any suggestions as to the best methods to use for making a glossary
>> script???
>>

>
> To start with, search on database normalization to get some ideas on how
> to design a database. Then figure out how you want to structure your
> code.
>
> This can be a great learning experience for you. It's not difficult, but
> it brings several areas together to you.
>
> I know this is very high level - but you'll learn more trying to do it
> yourself than if someone gives you the code - or even structures it for
> you. Try it yourself, and when you get stuck, ask specific questions
> here.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstucklex@attglobal.net
> ==================



  Réponse avec citation
Vieux 03/09/2007, 03h29   #8
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

Kye wrote:
> Sounds like a good idea. Thanks for the advise Jerry, Expect a great many
> "doh!" style queries
>


Kye,

No problem with the "doh" style queries. As long as you're trying,
you'll find lots of people willing to give you a hand.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 04/09/2007, 18h47   #9
Tom
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Glossary Script

On Sun, 02 Sep 2007 14:51:51 -0400, Jerry Stuckle wrote...
>
>Tom wrote:
>> On Sun, 02 Sep 2007 14:34:07 GMT, Kye wrote...
>>> Can anybody point me towards a simple PHP/MySQL script for running a
>>>glossary of terms on a website??? For an extremely simple script I have been
>>> finding it very difficult to actually locate one.
>>>

>>
>>
>>If I search around the Internet I can come up with lots of existing glossaries,
>> but not much on building one from scratch.
>>
>>Many glossaries I've seen are related to a specific topic. It may just be easier
>>to build one yourself than trying to find one to reuse. That way you can define
>>the output, whether it's a search field, selecting from a menu, or if it's small
>> enough just output all the data to a web page.
>>
>> Tom

>
>Tom,
>
>When I read this the first time, I thought the same thing. I've built
>glossaries before, and they're basically just a MySQL lookup. Some
>pretty basic stuff. It shouldn't take more than an hour or to to build
>from scratch; probably take longer than that to find a script, evaluate
>it and merge it into existing pages.
>



Based on the time it takes to find the software then modify it for yourself,
you're probably better off building it yourself and working through the learning
curve.

Depending on your level of experience, maybe tackle the database first so that
you know how to get information in and retrieve it. Then may tackle web forms,
depending how you want to present the information and how you want people to
access it.

Tom
--
NewsGuy Takes Usenet Cellular!
Download newsgroup MP3's to your Cell or PDA
Free Trial - http://newsguy.com/cellphone.htm

  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 23h02.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,16339 seconds with 17 queries