Как здесь вывести?
<?php while ($data = mysql_fetch_array($qr_result)) {
$count_pages = ceil(strlen($data['text']) / 850);
for($i = 0; $i < $count_pages; $i++) {
$text = substr($data['text'], $i*850, 850);
?>
<div>
<p><?=$text?></p>
</div>
<?
}
}; ?>