<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1037846" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1037846</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/simplest-database-use#comment-1217479</link>
    <description> &lt;p&gt;If you do decide to go with PHP and MySQL then there is a really great admin tool for MySQL called phpmyadmin.  That will allow you to do most of the function in an easy to use interface.  It also prints out the actual code it used so you can learn a lot just from using that tool.  I would recommend you pick up a book and start learning Proper PHP coding.  Spaghetti is good for dinner not for Code &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;
 </description>
     <pubDate>Thu, 05 Apr 2007 18:54:46 +0000</pubDate>
 <dc:creator>ChadR</dc:creator>
 <guid isPermaLink="false">comment 1217479 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/simplest-database-use#comment-1217460</link>
    <description> &lt;p&gt;Honestly, MySQL is a lot easier than people think.&lt;/p&gt;
&lt;p&gt;I learned the basics needed in about 2 hours from here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/&quot; class=&quot;bb-url&quot;&gt;http://dev.mysql.com/doc/refman/5.0/en/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A further week of reading, re-reading and writing lots of short routines and I was very comfortable.&lt;/p&gt;
&lt;p&gt;Commands like...&lt;/p&gt;
&lt;p&gt;INSERT INTO TABLE dbase VALUES(&#039;fred&#039;,&#039;smith&#039;,&#039;23 anystreet, anytown, 12345&#039;);&lt;/p&gt;
&lt;p&gt;...are so simple. The above inserts a record. if you use PHP you will just use the mysql_query() function to do this. Reading is easy too.&lt;/p&gt;
&lt;p&gt;SELECT address FROM dbase WHERE name=&#039;fred&#039; AND surname=&#039;smith&#039;;&lt;/p&gt;
&lt;p&gt;The above will extract the address for that person.&lt;/p&gt;
&lt;p&gt;I&#039;d go ahead and bone up - you won&#039;t regret it.&lt;/p&gt;
&lt;p&gt;Of course, you say PHP also doesn&#039;t mean much to you at the moment. So I&#039;d advise you to look here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://us.php.net/manual/en/index.php&quot; class=&quot;bb-url&quot;&gt;http://us.php.net/manual/en/index.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;- Robin&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://php.totallyexplained.com/&quot; class=&quot;bb-url&quot;&gt;PHP Info&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://mysql.totallyexplained.com/&quot; class=&quot;bb-url&quot;&gt;MySQL Info&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 05 Apr 2007 13:57:23 +0000</pubDate>
 <dc:creator>webchat</dc:creator>
 <guid isPermaLink="false">comment 1217460 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/simplest-database-use#comment-1216821</link>
    <description> &lt;p&gt;The best way to go on a website that has php and mySql available would be to use the mySql database.  Usually they have no charges for using this database and I would suggest programming using php.&lt;/p&gt;
&lt;p&gt;On a Windows site I&#039;d suggest using Access which is usually a no cost option as well.&lt;/p&gt;
 </description>
     <pubDate>Fri, 23 Mar 2007 16:34:23 +0000</pubDate>
 <dc:creator>Cyril.Kearney</dc:creator>
 <guid isPermaLink="false">comment 1216821 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/simplest-database-use#comment-1216576</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;robhattersley wrote:&lt;/strong&gt; My host allows php and mysql&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;MySQL is a database server, it&#039;s pretty much what you get when you buy hosting. As for being the simplest, well it&#039;s not (that would be &lt;a href=&quot;http://www.sqlite.org/&quot; class=&quot;bb-url&quot;&gt;SQLite&lt;/a&gt;, which is tiny and requires no setup. That aside, MySQL is what most hosts give you and it&#039;s certainly simple enough to do what you need without confusion (too much anyway).&lt;/p&gt;
&lt;p&gt;The good thing is you can download &lt;a href=&quot;http://www.mysql.com/&quot; class=&quot;bb-url&quot;&gt;MySQL&lt;/a&gt; for yourself, I believe the Apache Web server is available for Mac too, so you can get familiar with the technologies involved.&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;robhattersley wrote:&lt;/strong&gt; What would people suggest as a cheap and simple database for this? My host allows php and mysql, but these don&#039;t mean too much to me at the moment!&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;No more payments required, you already have the tools, you just need to create! I can&#039;t direct you to any specific tutorials, but I can assure you that a Google search for &#039;php mysql tutorial&#039; returned lots of--seemingly useful--results. &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;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;robhattersley wrote:&lt;/strong&gt; Can I for example link to a spreadsheet, or does it need to be separate.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Databases are not spreadsheets. They look quite similar (and the data is organised in much the same way) but a database has links to between tables of data and associated indexes to speed searching and sorting. Spreadsheets are easy, databases are not. &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;You can import a spreadsheet into a database, or vice-versa, this is probably where PHP comes-in. Could you clarify exactly what you&#039;re trying to do? Then we&#039;ll be able to offer advice.&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Mar 2007 04:50:42 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1216576 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/simplest-database-use#comment-1216568</link>
    <description> &lt;p&gt;Well if you are new to any type of server-side language, then since you already have access to PHP and mySQL, I would recommend that. Cost wise, this is proably your cheapest bet, as mySQL is free, and usually any host that lets you use PHP also allows mySQL.&lt;/p&gt;
&lt;p&gt;As far as linking to a spredsheet, there are ways to do this, but you will still be needing to use PHP and learn how to code it to read the spreadsheet. The only plus side I can see to using a spreadsheet is if you are used to them, and then being able to edit the data in a &quot;ready made&quot; editor (excel).&lt;/p&gt;
&lt;p&gt;IMO, if you have to learn how to write PHP code to handle the spreadsheet anyhow, might as well learn how to do it right with a database to begin with. With &lt;a href=&quot;http://www.phpmyadmin.net/&quot; class=&quot;bb-url&quot;&gt;phpMyAdmin&lt;/a&gt; to set up and edit the data, and the &lt;a href=&quot;http://www.php.net/mysql&quot; class=&quot;bb-url&quot;&gt;php.net pages on mysql functions&lt;/a&gt;, it is fairly simple.  (on the second link I gave, you can most likely skip down past all the Installation and configuration section, just get to the example.&lt;/p&gt;
&lt;p&gt;Follow the example, as you hit each MYSQL funtion used in the example, click on the link to the function in the table fo contents below the example, to see what each one is doing and how it works. Many functions also have more examples on their individual pages. IMO it really makes things easier down the road to know what the functions are doing instead of just modifying an example and guessing later what isn&#039;t working right.&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Fri, 16 Mar 2007 22:31:33 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1216568 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
