Jump to content
  • 0

Как ограничить выводимый текст в цикле do-while?


sergey_sergey
 Share

Question

Вот код:

$result = mysql_query ("SELECT * FROM table ORDER BY date DESC");
$myrow = mysql_fetch_array ($result);
do
{
printf ("%s %s %s %s", $myrow['id'],$myrow['text1'],$myrow['text2'],$myrow['text3']);
}
while ($myrow = mysql_fetch_array ($result));

Нужно ограничить суммарный текст, который идёт сплошной строкой

$myrow['text1'],$myrow['text2'],$myrow['text3']);

до 100 символов.

Если бы нужно было ограничить только text1, то можно было бы сделать так:

substr ($myrow['text1'],0,100)

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1) Вместо маркеров лучше используйте пристыковку, маркеры - прошлый век.

2) Конструкцию do-while, можно и по короче записать.

3) Насчет обрезки текста, тут два варианта:

а) использовать то что вы используете, но для каждого выводимого текста отдельно в диве, или ячейке таблицы.

б) создать поле в таблицы базы и туда заносить меньшее кол-во текста, а выводить большой в другом поле таблицы бд.

Кратенько как-то так:

$result = mysql_query ("SELECT * FROM table ORDER BY date DESC");
while ($myrow = mysql_fetch_array($result))
{
echo "
<table>
<tr>
<td>'.substr ($myrow['text1'],0,100).'</td>
<td>'.substr ($myrow['text2'],0,100).'</td>
<td>'.substr ($myrow['text3'],0,100).'</td>
</tr>
</table>
";
}

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.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy