<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1020560" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1020560</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1126425</link>
    <description> &lt;p&gt;As one who is currently in the learning process about mySQL and such myself, I second the thing about getting a bookk.  I&#039;ve bought 4 I think LOL&lt;/p&gt;
&lt;p&gt;BUT if that&#039;s not an option, you need to start with the basics.  Learn what the various field definitions are before you try working with them.  Learn which ones need lengths set, and what&#039;s acceptable.  Do some command line database building.  You gotta take it slow, learn the basics, and build off of that.&lt;/p&gt;
 </description>
     <pubDate>Mon, 03 Mar 2003 05:21:29 +0000</pubDate>
 <dc:creator>ShoelessNet</dc:creator>
 <guid isPermaLink="false">comment 1126425 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1126367</link>
    <description> &lt;p&gt;i don&#039;t think Length/Set can be &#039;things&#039;, think it has to be a value, try put it in the default (i&#039;d just loose it), oops just read back and saw Mark said similar thing.&lt;/p&gt;
&lt;p&gt;you also need more tables, id, img_width and what you have can be other things, other than CHAR, img_height etc could be INT(4) as you wouldn&#039;t have an image over 9999 pixels high, img_src could be VARCHAR(25) if you plan on using image names over 25 letters/numbers long&lt;/p&gt;
&lt;p&gt;you should really learn this yourself, but here is one I made earlier &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;CREATE TABLE `imagesite` (&lt;br /&gt;
  `pid` int(5) NOT NULL auto_increment,&lt;br /&gt;
  `pname` varchar(25) NOT NULL default &#039;&#039;,&lt;br /&gt;
  `pextn` varchar(4) NOT NULL default &#039;&#039;,&lt;br /&gt;
  `pwidth` int(4) NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `pheight` int(4) NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `phits` int(6) NOT NULL default &#039;1&#039;,&lt;br /&gt;
  PRIMARY KEY  (`pid`),&lt;br /&gt;
  UNIQUE KEY `pid` (`pid`),&lt;br /&gt;
  KEY `pid_2` (`pid`)&lt;br /&gt;
) TYPE=MyISAM;&lt;/p&gt;
&lt;p&gt;this is part of what I actually use on my site&lt;br /&gt;
pid is the images id number&lt;br /&gt;
pname is the images name (no format as I change them)&lt;br /&gt;
pextn is the extension, .jpg, .gif or .png&lt;br /&gt;
pwidth is images width default is 0 for no reason&lt;br /&gt;
pheight is images height default is 0 for no reason&lt;br /&gt;
phits is how many times it&#039;s viewed - totally optional, default is 1 for math problem i had with another section (can&#039;t multipy by 0)&lt;/p&gt;
&lt;p&gt;this works but may not be the proper way to do it, just one way i figured to do it. I&#039;m still a newbie at this stuff too but you are best to learn how to type out the mysql commands and excute with PHP, thanks to Mairving it was one of the first thing I learnt about it and am glad I did or I&#039;d be stuck with only using phpmyadmin and not knowing what/why/where, even thou I still havent got the full grasp of it - getting there thou.&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Mar 2003 09:59:06 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1126367 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1126361</link>
    <description> &lt;p&gt;This is what I see:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://chengeu.krayup.com/temp/shot3.gif&quot; class=&quot;bb-url&quot;&gt;http://chengeu.krayup.com/temp/shot3.gif&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Mar 2003 09:11:32 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1126361 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1126033</link>
    <description> &lt;p&gt;uh... can you discribe what your doing or looking at?&lt;/p&gt;
&lt;p&gt;..oh, and pictures always help. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt; (but not always required)&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Feb 2003 09:04:37 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1126033 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1126031</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;I personally think you&#039;re trying to learn SQL the wrong way. The best way is to get a good book and learn it step by step from the start or you could also do tutorials. But to install phpMyAdmin and start there, BAD IDEA! phpMyAdmin is just a web tool/interface for SQL, nothing more. &lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I would love to buy a book but...I have no money &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt; though I am looking for tutorials though &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;Mark: Thanks, I got the table made and added a few extra rows of &quot;information&quot; but it doesn&#039;t show up... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 24 Feb 2003 09:03:16 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1126031 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1125984</link>
    <description> &lt;p&gt;CHAR fields expect an integer value in the &quot;Length/Values&quot; textbox in phpMyAdmin.  How long can the character string be for that field?  I believe that the values you put in that field would be belong in the &quot;Default&quot; textbox.&lt;/p&gt;
 </description>
     <pubDate>Sun, 23 Feb 2003 22:44:02 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1125984 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/phpmyadmin#comment-1125971</link>
    <description> &lt;p&gt;I personally think you&#039;re trying to learn SQL the wrong way. The best way is to get a good book and learn it step by step from the start or you could also do tutorials. But to install phpMyAdmin and start there, BAD IDEA! phpMyAdmin is just a web tool/interface for SQL, nothing more.&lt;/p&gt;
 </description>
     <pubDate>Sun, 23 Feb 2003 11:23:36 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1125971 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
