Can any wapmaster can do the following things on Johncms 5.2.1!
Adding shoutbox in main menu same like
http://www.mloft.ml/
Making function when user register on a site or a he/she creates a new topic on forum , the notification is given automatically in shout box(guestbook) robot.
Creating auto content in main page of the latest forum topic post just like
http://mloft.ml/
information of user
example: total numbers of users, new registered, now online users name and number of online guest. Just like
http://mloft.ml/
anyone can do this?
Devendraoli, u may find many advanced wap masters here, and I know for sure that they may help u)
друзья, этому товарищу надо ваща помощь ) моды, хаки)
I may but i cannt speak russion language even understand so that here is difficult to get helped
и так, перевод
Можете ли вы, вап мастера, сделать следующие вещи на Johncms 5.2.1!
Добавление оповещения в главном меню , как на
http://www.mloft.ml/
Оформление функции, когда пользователь, зарегистриовался на сайте или он / она создает новую тему на форуме, уведомление автоматически приходит в гостевую книгу.
показуха последней темы в форуме на главной странице так же, как и ан
http://mloft.ml/
информация о пользователе
пример: общее число пользователей, новых зарегистрировано, сейчас на сайте пользователей, имя и количество онлайн гостей. Так же, как
http://mloft.ml/
кто может помочь этому товарищу?
very easy if you know mysql_query and fetch array.
for show guestbook in every page you want to just use
$content = mysql_query("SELECT `name`, `time`, `text` FROM `guest` ORDER BY time DESC LIMIT 5");
$show = mysql_fetch_array($content);
from the mysql_query:
SELECT : choose columns
FROM : from table
ORDER BY: order the rows by ...
DESC LIMIT: limited of the rows
for showing
echo '<div class="list1">'.$show['name'].': '.$show['text'].' ('.functions::display_date($show['time'].')</div>';
and that for showing chat rows. for form chat, you must learn about INSERT INTO database.
-----
for new post just change SELECT , FROM.
and that all. if you want to know more just give me a PM. i'll reply when i see the message.