Jump to content
php.lv forumi

sql error. Nu neredzu :/


anonīms

Recommended Posts

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 'desc,title,body,created,updated,image,comments) VALUES ('','1', '1'' at line 1

 

Nu vnk neredzu :X nez nakts vai kas, ceru, ka operatīvi spēsiet palīdzēt.

 

$SQL = "INSERT INTO ".PREFIX."news (language,uid,hot,category,status,desc,title,body,created,updated,image,comments) VALUES
       	('".$language."','".$lietotajs['id']."', '".$hot."', '".$category."','".$status."', '".$desc."', '".$title."','".$body."',
       	'".time()."','".time()."', '".$image_name.".jpg', '".$comments."')";
       	print $SQL.'<hr />';
       	mysql_query($SQL) or die(mysql_error());

Link to comment
Share on other sites

Nē, es tiešām kādu brīdi domāju, skatījos to kodu un vnk nevarēju iebraukt, bet pēc tam, kad te iepostoju, tad pār mani parasti nāk apgaismība un šī nav pirmā un pēdējā reize :D acis ar drusku krita ciet un jā, es labāk paprasu un paralēli meklēju, jo tā sanāk salīdzinoši ātrāk, ja patrs neatrodu izeju :P

Link to comment
Share on other sites

LOL, iz šodienas:

 

I have line of code that gets count of specified elements in another element.

 

$('.all_posts').find('.post').length

 

Anyway, the problem is that it doesn't change. I guess its because it ignores that I have removed that element after page has been loaded. With jQuery, of...

 

Un tad Es sapratu, ka esmu nevis elementu 'remove', bet gan 'hide'. :D

Link to comment
Share on other sites

Pierādījums, ka garāks pieraksts, bieži vien, ir daudz lasāmāks. Izmantots Kohana QB, starp citu.

 

$query = DB::insert(PREFIX . 'news')
  ->columns(array(
'language',
'uid',
'hot',
'category',
'status',
'desc',
'title',
'body',
'created',
'updated',
'image',
'comments'
  ))
  ->values(array(
$language,
$lietotajs['id'],
$hot,
$category,
$status,
$desc,
$title,
$body,
time(),
time(),
$image_name,
'.jpg',
$comments
  ))
  ->execute();

Link to comment
Share on other sites

daGrevis, Tev tas "kohana" izskan aptuveni katrā 15-20 postā un, ja ņem vērā, ka dienā ražo kādus 20, tad sanāk, ka katru dien vismaz 1 reizi. :D Būtu jau labi, ja vismaz 1/5 daļa no Taviem postiem būtu lietderīgi, ja ņem vērā, ka esi pat moderators vai kas tur :)

 

 

P.S Rīgas svētki, nedaudz pagulēju, bet tainība jau vien laikam ir

Edited by viena tante
Link to comment
Share on other sites

MongoDB - arī jauka lieta... un Kohanā ir tāda lieta kā Mango, kas, pēc idejas, ir bind'ings MangoDB.

 

Tante, nelasi manus postus. Man, īstenībā, ir diži vienalga ko kaut kāds pensis domā. :) Visu cieņu! :D

Link to comment
Share on other sites

Manuprāt, šādi būtu vēl labāk lasāms. Nav jāskaita, kurai kolonai, kura vērtība atbilst. :)

$insert = array(
   	'language' => $language,
   	'uid' => $lietotajs['id'],
   	'hot' => $hot,
   	'category' => $category,
   	'status' => $status,
   	'desc' => $desc,
   	'title' => $title,
   	'body' => $body,
   	'created' => time(),
   	'updated' => time(),
   	'image' => $image_name.'.jpg',
   	'comments' => $comments
);
$query = DB::insert(PREFIX . 'news')
  ->columns(array_keys($insert))
  ->values(array_values($insert))
  ->execute();

Edited by xPtv45z
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...