<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1023641" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1023641</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/functionality-question-opinions-change-sought#comment-1145275</link>
    <description> &lt;p&gt;I don&#039;t like the idea of seperate tables for each person.&lt;/p&gt;
&lt;p&gt;You may want to consider spliting the blog &quot;headers&quot; from the &quot;body&quot; (similar to email headers).  The blog_headers table could be fully indexed and maybe even fixed length (If you don&#039;t have titles for your blogs, otherwise you&#039;ll be wasting space using a char datatype), which would search faster.  Then the blog_body would contain an id and blob().&lt;/p&gt;
&lt;p&gt;Right now, I would make a feature list...&lt;/p&gt;
&lt;p&gt;Do you want to be able to pull stats from your data?  (what kind? stats per user? blogs-per-[unit_of_time]? longest blog to date? most read blog? most commented blog?)&lt;/p&gt;
&lt;p&gt;Should it be searchable?  (titles too? by date ranges? by author?)&lt;/p&gt;
&lt;p&gt;Should there be user comments? (searchable?)&lt;/p&gt;
&lt;p&gt;If there are user comments, should there be a mechanism for the blogger to reply to a specific user comment? (like some guestbooks provide)&lt;/p&gt;
&lt;p&gt;Is there a need for attachments? (stored in db or in filesystem? un/limited attachments per blog?)&lt;/p&gt;
&lt;p&gt;Is there a need for bbcode or URL parsing?&lt;/p&gt;
&lt;p&gt;Will this be template driven?&lt;/p&gt;
 </description>
     <pubDate>Wed, 04 Feb 2004 21:51:34 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1145275 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/functionality-question-opinions-change-sought#comment-1145223</link>
    <description> &lt;p&gt;kewl&lt;br /&gt;
someome at a different forums suggested i rethink splittingot each user having their own table since it creates issues tryingto find the last past, posts today, etc.&lt;/p&gt;
&lt;p&gt;so i have a question here. who thinks there&#039;s a better way to make it more scalable?&lt;/p&gt;
 </description>
     <pubDate>Sun, 01 Feb 2004 01:18:13 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1145223 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/functionality-question-opinions-change-sought#comment-1145206</link>
    <description> &lt;p&gt;Does this meet what you need?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://ca.php.net/manual/en/function.mysql-list-tables.php&quot; class=&quot;bb-url&quot;&gt;http://ca.php.net/manual/en/function.mysql-list-tables.php&lt;/a&gt;&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
&lt;strong&gt;thebitman at attbi dot com&lt;/strong&gt;&lt;br /&gt;
07-May-2003 01:49&lt;br /&gt;
okay everybody, the fastest, most accurate, safest method:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;function &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_table_exists&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$table&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$link&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$exists &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_query&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT 1 FROM `&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$table&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;` LIMIT 0\&quot;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$link&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$exists&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;) return true;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return false;&lt;br /&gt;}&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Note the &quot;LIMIT 0&quot;, I mean come on, people, can&#039;t get much faster than that! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As far as a query goes, this does absolutely nothing. But it has the ability to fail if the table doesnt exist, and that&#039;s all you need! &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;If not, &lt;a href=&quot;http://www.mysql.com/doc/en/CREATE_TABLE.html&quot; class=&quot;bb-url&quot;&gt;http://www.mysql.com/doc/en/CREATE_TABLE.html&lt;/a&gt; should suit your needs.&lt;/p&gt;
 </description>
     <pubDate>Sat, 31 Jan 2004 20:17:40 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1145206 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
