question about creating a searchable database for a small library

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default question about creating a searchable database for a small library

    Hi all,

    The organisation which I work for has a small library of maybe 100 DVDs and
    200 books. I would like to create a database of the DVDs and books with
    fields like title, author / director, description, and allow users to search
    the database through a webpage.

    However, while I have experience in HTML and Visual Basic programming, I
    have no experience in this kind of programming. I do however have a thick
    book on PHP and MySQL (PHP and MySQL Web Development, Welling and Thomson,
    SAMS press) and look forward to the challenge of learning a bit of PHP and
    MySQL.

    So, the first question that I'd be grateful if you could answer is: would
    creating this database and the PHP script with which it would be searched be
    a fairly easy task? Or would it be quite difficult, given my lack of
    experience? How many days of straight programming do you think it would it
    take, learning as I go? How do I get started?

    The second question is, given that it is viable, are there any hints or tips
    that you could give me? An outline of the script required would be great.
    Are there any kinda scalability issues that I should consider when creating
    this script? What things could go wrong with such a script? I know this is
    kinda a vague question, sorry; I expect that when I actually start writing
    the script I'll have a better idea of the issues I'm prematurely worrying
    about.

    Thanks very much for your input and opinion. Apologies for the
    cross-posting, hope it doesn't bother anyone.

    Kind regards
    Simon


    Simon Guest

  2. Similar Questions and Discussions

    1. Creating Searchable PDFs
      Hello, I am somewhat need to Acrobat development and would really appreciate some help and direction with these questions I have: 1) Whats the...
    2. Creating searchable indexes
      I am trying to learn how to create indexes from a 26 Chapter document, by the help section of the manual. It is not very clear on the steps. Can...
    3. Creating searchable pdfs from scans
      Is there a way through acrobat 6 to create a pdf that you can run search options on from a scan? For example, I am wanting to scan about 1000 pages...
    4. Question about creating a database
      I need to make a database of employees and their contact info. I've been playing around with different methods and xtras like V12 xtra and myExel...
    5. when creating text in a small image...
      .....when i create text in a small image and try to move it to the center, it wont let me, and it drags it to either the top of the pic or the bottom...
  3. #2

    Default Re: question about creating a searchable database for a small library

    On Sun, 12 Sep 2004 10:54:10 GMT (more or less), "Simon"
    <everythingiwantedyoutobeno.spam@yahoo.co.uk> wrote:
    >Hi all,
    >
    >The organisation which I work for has a small library of maybe 100 DVDs and
    >200 books. I would like to create a database of the DVDs and books with
    >fields like title, author / director, description, and allow users to search
    >the database through a webpage.
    >
    >However, while I have experience in HTML and Visual Basic programming, I
    >have no experience in this kind of programming. I do however have a thick
    >book on PHP and MySQL (PHP and MySQL Web Development, Welling and Thomson,
    >SAMS press) and look forward to the challenge of learning a bit of PHP and
    >MySQL.
    >
    >So, the first question that I'd be grateful if you could answer is: would
    >creating this database and the PHP script with which it would be searched be
    >a fairly easy task? Or would it be quite difficult, given my lack of
    >experience? How many days of straight programming do you think it would it
    >take, learning as I go? How do I get started?
    >
    >The second question is, given that it is viable, are there any hints or tips
    >that you could give me? An outline of the script required would be great.
    >Are there any kinda scalability issues that I should consider when creating
    >this script? What things could go wrong with such a script? I know this is
    >kinda a vague question, sorry; I expect that when I actually start writing
    >the script I'll have a better idea of the issues I'm prematurely worrying
    >about.
    IMHO, setting up the database is the easy part. Settingup the forms with all
    the necessary fields is the tedious part. Programming is the interesting
    part.

    If you google about a bit, you'll probably find many of the building blocks.
    I like using a PHP library called EZ_SQL to encapsulate all of the database
    bookkeeping stuff. You pass it a query and get results. It handles the
    connections, etc. See [url]http://www.jvmultimedia.com/[/url]

    On a learning as you program basis, give yourself a day to get the basics and
    follow a lot of blind leads and a couple more days to get the first draft
    system online.
    Steven Stern Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139