kerz Posted October 15, 2006 Report Share Posted October 15, 2006 (edited) Kā lai piekabinu BB funkciju? function smarty_modifier_bbcode2html($message) šajā? echo "<div class='item'>"; echo "<h1>"; echo "<a href=\"?lacz=full_news&id=$row[id]\">"; echo $row['title']; echo "</a>"; echo "</h1>"; echo "<div class='descr'>"; echo $row['time']; echo "</div>"; echo "<p>"; echo $row['text']; echo "</p>"; $count = mysql_query("select * from news_coments where news_id='$row[id]'"); $sk = mysql_num_rows($count); echo "<br>"; echo "<a href=\"?action=full_news&id=$row[id]\">Komentāri $sk</a>"; echo "</div>"; Edited October 15, 2006 by kerz Link to comment Share on other sites More sharing options...
andrisp Posted October 15, 2006 Report Share Posted October 15, 2006 echo smarty_modifier_bbcode2html($row['text']); Link to comment Share on other sites More sharing options...
kerz Posted October 15, 2006 Author Report Share Posted October 15, 2006 varbūt labāk man būtu taisīt atsevišķu bbcode finkcijas failu? tikai kā lai es norādu ka tieši to ar include? Link to comment Share on other sites More sharing options...
andrisp Posted October 15, 2006 Report Share Posted October 15, 2006 ja vēlēsies šo fju izmantot vairākos skriptos, tad iesaku tev viņu ievietot atsevišķā failā, piem., functions.php un pārējos skriptos: require('functions.php'); Link to comment Share on other sites More sharing options...
Recommended Posts