Jump to content

Сохранение текста в бд

Featured Replies

Интересует вопрос каким образом можно получить сохранение текста в базе данных и дальнейший его вывод в системе (на сайте).

Желательно пример/код

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/
Share on other sites

$result = mysql_query("SELECT `text` FROM `table`");
while($row = mysql_fetch_assoc($result)) {
echo $row['text'];
}
[/CODE]

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/?&do=findComment&comment=15626
Share on other sites


$result = mysql_query("SELECT `text` FROM `table`");

while($row = mysql_fetch_assoc($result)) {

echo $row['text'];

}

Как можно будет использовать этот код в шаблонах сайта?

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/?&do=findComment&comment=15627
Share on other sites

В шаблонах какого сайта?

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/?&do=findComment&comment=15629
Share on other sites

В шаблонах какого сайта?

К примеру возьмём ipb

Допустим мне нужно сделать textbox с кнопкой отправить.

Какое действие будет на кнопке отправить и как ко всему этому привязать бд.

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/?&do=findComment&comment=15630
Share on other sites

В шаблонах это не делается.

Link to comment
https://ipbmafia.ru/topic/2349-sohranenie-teksta-v-bd/?&do=findComment&comment=15631
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.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.