Jump to content
php.lv forumi

Komentāru sistēma


Ernijs_E

Recommended Posts

Zinu, esmu jau apnicis! Bet pēdējā lieta ko vaicāju, Jums.. :)

 

Kā izveidot komentāru sistēmu, pie PHPBB ezportal skripta, reāli vajadzīgs komentāru skripts, kas pievieno ievadīto komentāru attiecīgajā myqsl tabulā, respektīvi, ja komentārs tiek rakstīts rakstā, kura ID ir 14, ta komentārs pievienojas, tabulā ar ID 14, jeb

 

raksti --> 14 --> komentāri --> title, post,.

 

Vai, tas ir iespējams? :)

Link to comment
Share on other sites

mysql_query("SELECT * FROM komentari WHERE raksta_id = '".mysql_real_escape_string($_GET['id'])."'") or die(mysql_error());

un insert

$raksta_id = mysql_real_escape_string($_GET['id']);
mysql_query("INSERT INTO komentari(raksta_id) VALUES('$raksta_id')") or die(mysql_error());

Edited by false
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...