<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018768" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018768</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110773</link>
    <description> &lt;p&gt;Manage MySQL is nice for setting up databases and users (for using the db itself) and has connection information in it. It&#039;s part of the CPanel group.&lt;/p&gt;
&lt;p&gt;Mine gives me this:&lt;/p&gt;
&lt;p&gt;Perl $dbh = DBI-&amp;gt;connect(&quot;DBI:mysql:dbname:localhost&quot;,&quot;dbuser&quot;,&quot;&quot;);&lt;/p&gt;
&lt;p&gt;PHP $dbh=mysql_connect (&quot;localhost&quot;, &quot;dbuser&quot;, &quot;&quot;) or die (&#039;I cannot connect to the database.&#039;); mysql_select_db (&quot;dbname&quot;); &lt;/p&gt;
&lt;p&gt;JDBC (may not be avalible)&lt;br /&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;@ &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;page import&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;java.sql.*&quot; &lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
               Connection connection = null;&lt;br /&gt;
               Class.forName(&quot;org.gjt.mm.mysql.Driver&quot;).newInstance();&lt;br /&gt;
               connection = DriverManager.getConnection(&lt;br /&gt;
                     &quot;jdbc:mysql://localhost/dbname?user=dbuser&amp;amp;password=&quot;);&lt;/p&gt;
&lt;p&gt;But that&#039;s for connecting to the db -- as for getting information out of it, you&#039;d do best to learn some basic commands from either the MySQL site, or pick up a book on MySQL (SAMS, Wrox, et cetera) and teach yourself.&lt;/p&gt;
&lt;p&gt;Once you understand the basics, it&#039;s not that hard. But PHPMyAdmin isn&#039;t for making front-end scripts (to my knowledge), it&#039;s a graphical interface for controlling the contents and structure of your database. That&#039;s not what you see on your webpage at all, if you&#039;re looking for something that will allow web interface. That requires a script that talks TO your database, not a script that MANAGES your database.&lt;/p&gt;
&lt;p&gt;Do you see the difference? I&#039;ll try to find a good analogy if you don&#039;t.&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 07:29:47 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1110773 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110767</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by zollet &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;Mike, have you looked at phpMyAdmin (&lt;a href=&quot;http://www.phpmyadmin.net/&quot; class=&quot;bb-url&quot;&gt;http://www.phpmyadmin.net/&lt;/a&gt;)? It does let you password protect it and it is by far the best and most complete MySQL management script. &lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;As it so happens, phpMyAdmin is pre-installed on my site by my host!  I looked at it but it honostly looks way confusing to a newbie like me.  Maybe it is worth learning, but my first question is how do I display the contents of my mySQL database table in my webpage???  (All those other less powerful scripts are specifically designed to output to an html file)&lt;/p&gt;
&lt;p&gt;Also, some of those other scripts allow for password protection, but not for visitors who fill in their own data thru a web interface.  I don&#039;t think phpMyAdmin does either.  And now that I&#039;m thinking of it, does phpMyAdmin have some GUI web interface that would allow visitors to enter new info to the database?  (this wouldn&#039;t matter if I decide to do all the entries myself, but that&#039;s not the ideal situation)&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 04:12:47 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1110767 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110766</link>
    <description> &lt;p&gt;Mike, have you looked at phpMyAdmin (&lt;a href=&quot;http://www.phpmyadmin.net/&quot; class=&quot;bb-url&quot;&gt;http://www.phpmyadmin.net/&lt;/a&gt;)? It does let you password protect it and it is by far the best and most complete MySQL management script.&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 03:47:25 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110766 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110761</link>
    <description> &lt;p&gt;Switching to another script is no problem as long as it&#039;s configured to use your database field/table names. Once the data is in mySQL you can do whatever you want with it, it isn&#039;t dependant on the scripts you used to put it there, unless your script encrypts the data before it saves it, that is pretty unlikely though.&lt;/p&gt;
&lt;p&gt;Have fun!&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Jun 2002 21:40:16 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1110761 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110760</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by Peter J. Boettcher &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;Was alumniPRO written in PHP? If so disect it, see how it works, and develop your own script from their model. &lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;No, it was perl, which is okay too.&lt;/p&gt;
&lt;p&gt;From what I&#039;m seeing out there, I don&#039;t think I need a script specifically tailored for my unique use (and as you said, I probably won&#039;t find one either).  I think a simple database would work fine and a web GUI would make adding/editing/deleting entries easy.  I haven&#039;t found any web GUI that will password protect a public entry so it looks like I&#039;ll still have to enter data myself.  But a mySQL database will still allow users to seach and re-order the entires, while my old word-to-html pages couldn&#039;t do that.&lt;/p&gt;
&lt;p&gt;At this point I&#039;m looking at DaDaBlk and phpMyEdit to work as my web interface.&lt;/p&gt;
&lt;p&gt;NEW QUESTION:  If down the road I&#039;ve entered these hundreds of database entries (with 5 or 6 fields per entry row) into a mySQL database, can I switch to a different script that could utilize the same, already completed mySQL database (so I wouldn&#039;t have to enter everything again if I find a better script one day)?&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Jun 2002 21:34:36 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1110760 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110756</link>
    <description> &lt;p&gt;Mike,&lt;/p&gt;
&lt;p&gt;Its doubtful that you&#039;ll ever find the perfect script that does everything you want, unless you&#039;re doing something simple. Have you checked out &lt;a href=&quot;http://www.hotscripts.com&quot; class=&quot;bb-url&quot;&gt;hotscripts.com&lt;/a&gt; ?&lt;/p&gt;
&lt;p&gt;While it might be more work upfront for you, in the end it will pay dividends to build your own solution. What you describe is a fairly easy thing to program once you know what you&#039;re doing.&lt;/p&gt;
&lt;p&gt;If you want to go PHP/mySQL then you should start learning those. Get some sample PHP/mySQL scripts and learn from them. Was alumniPRO written in PHP? If so disect it, see how it works, and develop your own script from their model.&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Jun 2002 18:21:19 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1110756 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110755</link>
    <description> &lt;p&gt;So it sounds like you&#039;re saying that using a mySQL database is a good way to go, and that I&#039;m at least looking in the right direction?  And it sounds to me that scripts like those I linked to should help me out with maintaining the database?&lt;/p&gt;
&lt;p&gt;Of course, as you mentioned, since I don&#039;t know how to custom program or manually manipulate a database. I may end up having to continue making all the database changes myself, but that&#039;s what I do now so it&#039;s at least none the worse.&lt;/p&gt;
&lt;p&gt;Still looking for script suggestions if anybody has any.  Thanks.&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Jun 2002 18:00:46 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1110755 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/what-am-i-looking#comment-1110753</link>
    <description> &lt;p&gt;All the features you&#039;ve mentioned above are possible, you just need to know how to do it or pay someone to do it for you.&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Jun 2002 17:24:02 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110753 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
