<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1005916" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1005916</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031562</link>
    <description> &lt;p&gt;First off, you need to learn SQL. With 2200+ photos, this is not something you want to do with text files and scripts. You want to use a database (mySQL is a good candidate that most web companies use) and a scripting language to generate your pages dynamically (PHP or Perl work well).&lt;/p&gt;
&lt;p&gt;You might want to start a database in Microsoft Access. The database could have two parts (tables). One would correspond to information about the species of fish, and one would correspond to information about the photograph. &lt;/p&gt;
&lt;p&gt;The fish table would contain the species, etc. You could also put &quot;category&quot; information on this table, like &quot;man-eating fish&quot;, &quot;plant-eating fish&quot;, etc.&lt;/p&gt;
&lt;p&gt;Having a separate photograph table would allow you to have multiple photos of each fish if you so choose.&lt;/p&gt;
&lt;p&gt;You might also want a table to store your categories/sub categories. It would depend if you want to have more information specifically about these categories (as opposed information about the individual fish). It would also help performance (I&#039;ll explain this later).&lt;/p&gt;
&lt;p&gt;I would advise against storing the images in the database. This makes them unwieldy, and some service providers (mine, for example) prohibit this because they don&#039;t have a way of restricting the space you use in the database (the database files are stored in a common directory). If you use a standard directory structure to store the files and store pointers in your database to the file (by pointer, I mean the name of the file + the subdirectory) then it&#039;s just as easy as storing them in the database, and it more flexible.&lt;/p&gt;
&lt;p&gt;I would suggest your fish table to look something like this:&lt;/p&gt;
&lt;p&gt;1) Species ID (a simple number simply identifying your fish type. Don&#039;t try and build any intelligence into this key -- it can come back to haunt you later).&lt;/p&gt;
&lt;p&gt;2) Species name&lt;/p&gt;
&lt;p&gt;3) Common name&lt;/p&gt;
&lt;p&gt;4+) Any specific information about this fish, including categories/sub categories, species comments, etc.&lt;/p&gt;
&lt;p&gt;Your photograph table would be something like this:&lt;/p&gt;
&lt;p&gt;1) Species ID (pointing back to the fish table).&lt;/p&gt;
&lt;p&gt;2) URL/Email for credits.&lt;/p&gt;
&lt;p&gt;3) Pointer to where the photo is. If you do this properly, you can have identical directory structures on your PC vs your web site. Then simply synchronize the directories whenever you update your site. It will allow you to see the picture on your PC and also on your site.&lt;/p&gt;
&lt;p&gt;The advantage of keeping your site on both the web and your PC is that if your ISP decides to pull the plug on you, or the site crashes, you don&#039;t lose everything. It&#039;s a real concern, not a far-fetched one.&lt;/p&gt;
&lt;p&gt;Once you have the web database set up and populated, all you need to do is to write a few scripts that will generate your pages. For example, you could have one script generate a list of category links. Each link would point to a script that generated the list of fish in that category. Each link in that list would bring up the photo(s) of the fish along with any descriptive information about it, and the crediting URL&#039;s.&lt;/p&gt;
&lt;p&gt;One other thing to consider; you might want to use the database structure to generate static HTML pages for each fish. There are two reasons for this:&lt;/p&gt;
&lt;p&gt;1) Database queries can be somewhat resource-intensive. Depending on how much power your site has (if you&#039;re on a virtual host shared by other sites, it might be slow to get data from a database), it might be faster to serve up a static HTML page vs. a dynamic page.&lt;/p&gt;
&lt;p&gt;2) Search engines don&#039;t index dynamic pages. So if someone goes to Yahoo and types in &quot;Sea Bass&quot;, if you have a static page devoted to the Sea Bass, it may come up, but if you only have a dynamic page it won&#039;t.&lt;/p&gt;
&lt;p&gt;You&#039;re really going to have to want to learn about new technology though; it seems like you&#039;ve reached the human limit on maintaining your web site, and in order to get to the next level you need to learn some new stuff.&lt;/p&gt;
&lt;p&gt;Ralph&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
 &lt;a href=&quot;http://www.hockeydb.com&quot; class=&quot;bb-url&quot;&gt;http://www.hockeydb.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2000 14:12:00 +0000</pubDate>
 <dc:creator>Ralph Slate</dc:creator>
 <guid isPermaLink="false">comment 1031562 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031561</link>
    <description> &lt;p&gt;I’d be happy to point you in the right direction, however there’s no way I can explain it all here. If you want to save the images inside the database you use BLOBs (binary large object). There are a few tutorials around that explain how to do this. You may also want to purchase a PHP/mySQL book. DevShed also has a good mySQL tutorial at &lt;a href=&quot;http://www.devshed.com/Server_Side/MySQL/Intro/&quot; class=&quot;bb-url&quot;&gt;http://www.devshed.com/Server_Side/MySQL/Intro/&lt;/a&gt;  In many ways it’s a lot easier just to locate the files in your servers WWW space.&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Adam&lt;br /&gt;
AIS Internet Solutions&lt;br /&gt;
 &lt;a href=&quot;mailto:adam@aisinternet.com&quot; class=&quot;bb-email&quot;&gt;adam@aisinternet.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://www.aisinternet.com&quot; class=&quot;bb-url&quot;&gt;www.aisinternet.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2000 01:32:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1031561 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031560</link>
    <description> &lt;p&gt;Adam, there is no limit to the sizes of my databases.&lt;/p&gt;
&lt;p&gt;How would I create something like that?&lt;/p&gt;
&lt;p&gt;------------------&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2000 00:31:00 +0000</pubDate>
 <dc:creator>fishman</dc:creator>
 <guid isPermaLink="false">comment 1031560 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031559</link>
    <description> &lt;p&gt;The best way would probably be building a management interface that allows you (or your visitors) to add pictures and text, the images would then be stores in a particular folder and the program would index them by category or what ever. You could implement them directly into mySQL but most hosts have a maximum on the database size (usually anywhere from 2 to 8MB).&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Adam&lt;br /&gt;
AIS Internet Solutions&lt;br /&gt;
 &lt;a href=&quot;mailto:adam@aisinternet.com&quot; class=&quot;bb-email&quot;&gt;adam@aisinternet.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://www.aisinternet.com&quot; class=&quot;bb-url&quot;&gt;www.aisinternet.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 May 2000 00:07:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1031559 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031558</link>
    <description> &lt;p&gt;I have looked through all the images at cgi-resources.com.  Most of them are thumbnail galleries.  The ones that aren&#039;t thumbnail galleries don&#039;t suite my needs.&lt;/p&gt;
&lt;p&gt;Also, I was hoping to us MySQL so there would be less strain on the server.  Or would a CGI work just as well?&lt;/p&gt;
&lt;p&gt;------------------&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2000 23:23:00 +0000</pubDate>
 <dc:creator>fishman</dc:creator>
 <guid isPermaLink="false">comment 1031558 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031557</link>
    <description> &lt;p&gt;You could hirer someone to build you a custom script for starters. If you want something custom that’s the best way to go. I do this type of work fairly often and people are always amazed at how functional a custom application is.&lt;/p&gt;
&lt;p&gt;Second you may want to look at &lt;a href=&quot;http://www.cgi-resources.com/Programs_and_Scripts/Perl/&quot; class=&quot;bb-url&quot;&gt;http://www.cgi-resources.com/Programs_and_Scripts/Perl/&lt;/a&gt;  they have a lot of Perl scripts, including tons of photo album type programs.&lt;/p&gt;
&lt;p&gt;Good luck,&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Adam&lt;br /&gt;
AIS Internet Solutions&lt;br /&gt;
 &lt;a href=&quot;mailto:adam@aisinternet.com&quot; class=&quot;bb-email&quot;&gt;adam@aisinternet.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://www.aisinternet.com&quot; class=&quot;bb-url&quot;&gt;www.aisinternet.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2000 22:57:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1031557 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031556</link>
    <description> &lt;p&gt;I looked at most of the scipts and they are not what I want.&lt;/p&gt;
&lt;p&gt;But thanks anyway...&lt;/p&gt;
&lt;p&gt;Does anyone else have a suggestion?&lt;/p&gt;
&lt;p&gt;------------------&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2000 22:35:00 +0000</pubDate>
 <dc:creator>fishman</dc:creator>
 <guid isPermaLink="false">comment 1031556 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/database-photo-gallery#comment-1031555</link>
    <description> &lt;p&gt;Hi Kevin the fishman,&lt;/p&gt;
&lt;p&gt;You might want to check this page. It has a collection of mostly free PHP scripts. Some are standalone and some work with a mySQL backend. Hope this helps in your search.&lt;br /&gt;
 &lt;a href=&quot;http://www.hotscripts.com/PHP/Scripts_and_Programs/Image_Manipulation/Image_Display/&quot; class=&quot;bb-url&quot;&gt;http://www.hotscripts.com/PHP/Scripts_and_Programs/Image_Manipulation/Image_Display/&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;Dan&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 May 2000 21:00:00 +0000</pubDate>
 <dc:creator>cds</dc:creator>
 <guid isPermaLink="false">comment 1031555 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
