View Single Post
  #35  
Old 2nd January 2015, 03:49
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Quote:
Originally Posted by vldutz1 View Post
Code:
Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;
Try this:

Code:
CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=1;
--------------

Quote:
Originally Posted by dj_otrov View Post
Latest News
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
That function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged. - http://php.net/manual/en/function.eregi-replace.php

Last edited by BamBam0077; 2nd January 2015 at 15:40. Reason: Tidy Up! ~ Happy New Years BravoList 2015
Reply With Quote