Pls Help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Pls Help

    -- --------------------------------------------------------

    --
    -- Table structure for table `ibwf_yoursay`
    --

    CREATE TABLE `ibwf_blogs` (
    `id` int(100) NOT NULL auto_increment,
    `uid` int(100) NOT NULL default '0',
    `text` blob NOT NULL,
    `bgdate` int(100) NOT NULL default '0',
    PRIMARY KEY (`id`),
    ) ENGINE=MyISAM AUTO_INCREMENT=746 ;





    can any 1 pls fix dis.

    #2
    -- --------------------------------------------------------

    --
    -- Table structure for table `ibwf_yoursay`
    --

    CREATE TABLE `ibwf_blogs` (
    `id` int(100) NOT NULL auto_increment,
    `uid` int(100) NOT NULL default '0',
    `text` blob NOT NULL,
    `bgdate` int(100) NOT NULL default '0',
    PRIMARY KEY (`id`),
    ) ENGINE=MyISAM AUTO_INCREMENT=746 ;





    can any 1 pls fix dis.[/b]
    --
    -- Table structure for table `ibwf_yoursay`
    --

    CREATE TABLE `ibwf_yoursay` (
    `id` int(100) NOT NULL auto_increment,
    `uid` int(100) NOT NULL default '0',
    `text` blob NOT NULL,
    `bgdate` int(100) NOT NULL default '0',
    PRIMARY KEY (`id`),
    ) ENGINE=MyISAM AUTO_INCREMENT=0 ;

    Comment


      #3
      Code:
      PRIMARY KEY (`id`),
      ) ENGINE=MyISAM AUTO_INCREMENT=746; 
      
      
      --------------------
      change the above to the bellow

      Code:
      -- 
      
      PRIMARY KEY (`id`),
      ) ENGINE=MyISAM AUTO_INCREMENT=0; 
      
      --------------------
      Want something coded email me at sales@webnwaphost.com for a prices.




      Comment


        #4
        Thanx alot yall. And Happy New Year

        Comment


          #5

          BUT after dat again i got diz error



          <div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>Error

          SQL query:

          CREATE TABLE `ibwf_yoursay` (
          `id` int( 100 ) NOT NULL AUTO_INCREMENT ,
          `uid` int( 100 ) NOT NULL default &#39;0&#39;,
          `text` blob NOT NULL ,
          `bgdate` int( 100 ) NOT NULL default &#39;0&#39;,
          PRIMARY KEY ( `id` ) ,
          ) ENGINE = MYISAM AUTO_INCREMENT =0

          MySQL said:
          #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#39;) ENGINE=MyISAM AUTO_INCREMENT=0&#39; at line 7

          </div>

          Comment

          Working...
          X