Parašė TomasT· 2011 Lie. 14 22:07:57
#1
Pataisiau Tema:
Visi Kodai Ant kokių Errorų:
public_html/maincore.php
mysql_num_rows(): supplied argument is not a valid MySQL result resource Eilutė: 228
218
219 if (!$result) {
220 echo mysql_error();
221 return false;
222 } else {
223 return $result;
224 }
225 }
226
227 function dbrows($query) {
228 $result = @mysql_num_rows($query);
229 return $result;
230 }
231
232 function dbarray($query) {
233 $result = @mysql_fetch_assoc($query);
234 if (!$result) {
235 echo mysql_error();
236 return false;
237 } else {
238
-----------------------------------
templates/panels.php(74) : eval()'d code
Undefined variable: place Eilutė: 25
1 <?php
2 require_once "maincore.php";
3 require_once THEMES."templates/header.php";
4 echo"<script type='text/javascript' src='".INCLUDES."title.js'></script>";
5 ?>
6 <style type="text/css">
7
8 tooltip {
9 font-family: Verdana, Arial, Helvetica, sans-serif;
10 font-size: 10px;
11 color: #ffffff;
12 position: absolute;
13 z-index: 3000;
14 /*border: 1px solid #111;*/
15 background-color: #000;
16 padding: 5px;
17
18 }
19
20 tooltip h3, #tooltip div { margin: 0; }
21
22 div#qTip {
23 padding: 5px;
---------------------------------------
templates/panels.php(74) : eval()'d code
Undefined index: comment_smileys Eilutė: 20
1 <?php
2 require_once "maincore.php";
3 require_once THEMES."templates/header.php";
4 echo"<script type='text/javascript' src='".INCLUDES."title.js'></script>";
5 ?>
6 <style type="text/css">
7
8 tooltip {
9 font-family: Verdana, Arial, Helvetica, sans-serif;
10 font-size: 10px;
11 color: #ffffff;
12 position: absolute;
13 z-index: 3000;
14 /*border: 1px solid #111;*/
15 background-color: #000;
16 padding: 5px;
17
18 }
19
20 tooltip h3, #tooltip div { margin: 0; }
21
22 div#qTip {
23 padding: 5px;
Padesit +11 ir kur juos kai istaisai mesti?
Redagavo TomasT· 2011 Lie. 15 08:07:05