• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Pomocy

spenser

New Member
Joined
Mar 18, 2014
Messages
1
Reaction score
0
mam małe pytanko umiał by to ktoś naprawic??? albo pomuc z góry dzięki



Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'baza.z_news_big' doesn't exist' in C:\xampp\htdocs\latestnews.php:150 Stack trace: #0 C:\xampp\htdocs\latestnews.php(150): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\index.php(63): include('C:\xampp\htdocs...') #2 {main} thrown inC:\xampp\htdocs\latestnews.php on line 150
 
Nie bierzcie się za otsy bez podstawowej chociazby umiejetnosci czytania ze zrozumieniem, nie nie mówię tu o posiadaniu wiedzy w zakresie PHP.


Base table or view not found. - https://translate.google.pl/

baza.z_news_big doesn't exist - https://translate.google.pl/

PHP:
CREATE TABLE IF NOT EXISTS `z_news_big` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hide_news` tinyint(1) NOT NULL DEFAULT '0',
  `date` int(11) NOT NULL DEFAULT '0',
  `author` varchar(255) NOT NULL,
  `author_id` int(11) NOT NULL,
  `image_id` int(3) NOT NULL DEFAULT '0',
  `topic` varchar(255) NOT NULL,
  `text` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
 
Back
Top