<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1028130" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1028130</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/about-adding-pages#comment-1166101</link>
    <description> &lt;p&gt;Ok, &quot;website.com&quot; is an EXAMPLE I was using an example of a naming scheme, not actual webpages, sorry for the confusion.&lt;/p&gt;
&lt;p&gt;When I say seperating code, content and design,&lt;/p&gt;
&lt;p&gt;Content: A database (or text files) with plain text in it, with some side information like catergorization, date etc. When using PHP most people use MySQL, but there are lots of databases out there. for info on mysql: &lt;a href=&quot;http://dev.mysql.com/&quot; class=&quot;bb-url&quot;&gt;http://dev.mysql.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Design: Your basic HTML, or XSS, or some other templating/style formating system. &lt;/p&gt;
&lt;p&gt;Code: PHP, ASP, JSP, or (if I am not mistaken) ColdFusion. What this does is &quot;pull&quot; data from the &quot;content&quot; and delivers it via the &quot;design&quot;&lt;/p&gt;
&lt;p&gt;If you&#039;re still unclear, I&#039;ll give one more &quot;example&quot;&lt;br /&gt;
Lets say I want 7 pages, about random stuff, and I want them to all look the same. Ok, so I have my 7 pages in txt files named 1-7.&lt;br /&gt;
Well, I have my design set up as template.html&lt;br /&gt;
So, someone comes to my site, they go to index.php&lt;br /&gt;
and what I want to see is a &quot;?page=&quot; after index.php, if I don&#039;t have one, or it&#039;s higher than 7, then I use the php to force a choice of a variable $page. Then I have the php call up the template, lets say into another variable using file_get_contents() and then the same thing with the $page.txt. So, once you have 2 variables $template and $page (or data, or whatever) then use something like ereg_replace(), preg_replace() or str_replace() to find a placeholder in the template file like &quot;&quot; and once it&#039;s replaced, you end up with 7 fully formatted html pages, you can automate it to automatically check when there are new ones, it doesn&#039;t have to be numbers, and this is just a basic run through of the concept.&lt;/p&gt;
&lt;p&gt;You might want to look into &lt;a href=&quot;http://smarty.php.net/&quot; class=&quot;bb-url&quot;&gt;Smarty&lt;/a&gt; I haven&#039;t tried it personally, but I have heard it&#039;s good, it&#039;s a php created, and driven templating engine.&lt;/p&gt;
 </description>
     <pubDate>Tue, 15 Feb 2005 17:39:09 +0000</pubDate>
 <dc:creator>CptAwesome</dc:creator>
 <guid isPermaLink="false">comment 1166101 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/about-adding-pages#comment-1166089</link>
    <description> &lt;p&gt;Okay, checked out the links you both gave me.  The PHP link is very helpful ( thanks ).&lt;br /&gt;
The other two links are for website hosting?  ( I don&#039;t understand what you want me to glean from this site )&lt;/p&gt;
 </description>
     <pubDate>Tue, 15 Feb 2005 11:58:10 +0000</pubDate>
 <dc:creator>iselljewelry</dc:creator>
 <guid isPermaLink="false">comment 1166089 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/about-adding-pages#comment-1166088</link>
    <description> &lt;p&gt;Sorry to be dumb, what do you mean by separating the code, design, and content?&lt;/p&gt;
&lt;p&gt;The common naming scheme ( as in jewelry1, jewelry2, etc....? )&lt;/p&gt;
&lt;p&gt;I am not familiar with PHP, Htaccess, URI&#039;s, ASP....I will try to look to find out about them through the link you both have provided me though and hopefully will be able to&lt;br /&gt;
decipher what it is all about.&lt;/p&gt;
&lt;p&gt;I basically know html and how to grab java scripts and add them.  As far as anything else it&#039;s pretty much greek to me.&lt;/p&gt;
&lt;p&gt;I want to have a really nice site, one that the seach engines won&#039;t cough at because in my type of business there are thousands (millions?) of listings.&lt;/p&gt;
&lt;p&gt;I need to figure out how to getting seen.&lt;/p&gt;
 </description>
     <pubDate>Tue, 15 Feb 2005 11:53:26 +0000</pubDate>
 <dc:creator>iselljewelry</dc:creator>
 <guid isPermaLink="false">comment 1166088 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/about-adding-pages#comment-1166060</link>
    <description> &lt;p&gt;There is really no easy way to explain all the steps you can go through to automate the process but, 3 things you want to do are:&lt;/p&gt;
&lt;p&gt;1. Seperate all the code, design, and content.&lt;br /&gt;
2. Have a common naming scheme, or logical database structure, because if you don&#039;t have that to begin with, it&#039;s a lot more work later.&lt;br /&gt;
3. Learn code tweaks, things like htaccess, and php&#039;s ability to read URIs, then &lt;a href=&quot;http://www.website.com/users/name&quot; class=&quot;bb-url&quot;&gt;http://www.website.com/users/name&lt;/a&gt;&lt;br /&gt;
can be the same thing as&lt;br /&gt;
&lt;a href=&quot;http://www.website.com/users.php?name=name&quot; class=&quot;bb-url&quot;&gt;http://www.website.com/users.php?name=name&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But the biggest key is seperating the content, design and code. When you have those 3 things in their own spaces, you have a much more flexible, and dynamic page.&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2005 23:56:44 +0000</pubDate>
 <dc:creator>CptAwesome</dc:creator>
 <guid isPermaLink="false">comment 1166060 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/about-adding-pages#comment-1166051</link>
    <description> &lt;p&gt;Well, if you are new to this, then there is nothing wrong with the way you have done things.&lt;/p&gt;
&lt;p&gt;You might want to look into &lt;a href=&quot;http://www.php.net/&quot; class=&quot;bb-url&quot;&gt;PHP&lt;/a&gt; or ASP to dynamically generate website content.&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2005 23:37:46 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1166051 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
