Jump to content
  • 0

Контент в блоке


fro
 Share

Question

Прощу помочь, у меня есть блок, его я хочу использовать для помещения контента на сайт, но проблема в том, что текст или картинка всегда вылезают за его рамки, как этому помешать ?

<div class="content"></div>;
.content{background:#FFFFFF;position:absolute;height:100%;width:980px;top:0;right:0;bottom:0;left:0;margin:0 auto;}
Edited by fro
Link to comment
Share on other sites

  • Answers 90
  • Created
  • Last Reply

Top Posters For This Question

Recommended Posts

  • 0

Fatal error: Uncaught exception 'Exception' with message 'SafeMySQL: 1044 Access denied for user 'root'@'localhost' to database 'blog`)'' in safemysql.class.php:334 Stack trace: #0 safemysql.class.php(44): SafeMySQL->error('1044 Access den...') #1 db.php(8): SafeMySQL->__construct(Array) #2test.php(2): include( 'db.php') #3 {main} thrown in safemysql.class.php on line 334

334 строка throw new $this->exname($err);

Edited by fro
Link to comment
Share on other sites

  • 0

Ну далее напишите скрипты для выдачи постов. Примерно так (могут быть ошибки):

posts/index.php

<?phpinclude "db.php";$start = 0;if(is_set($_GET["start"])){  $start = $_GET["start"];}$news = $db->getAll("SELECT * FROM news ORDER BY date DESC LIMIT $start,10");echo json_encode(Array("posts" => $posts));

Добавьте побольше записей и откройте в браузере.

Link to comment
Share on other sites

  • 0

у меня получился вот такой скрипт

<?phpinclude "../db.php";$start = 0;if(isset($_GET['start'])){$start = $_GET['start'];}$news = $db->getAll("SELECT * FROM  news ORDER BY new_date DESC LIMIT $start,10");echo json_encode(Array($news));?>

вы дает он такое
 

{"posts":[{"new_key":"2","new_title":"asdasdasdasdkjklasdj","new_text":"zxccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc","new_date":"2015-06-11 "},{"new_key":"1","new_title":"123123123123123123123123123123123","new_text":"123333333333333333333333sdaasdsadsda","new_date":"2015-06-11 "}]}

можно как нибудь убрать надписи "new_key" и остальные ? 

Edited by fro
Link to comment
Share on other sites

  • 0

Можно, но не нужно.

echo json_encode(Array("posts" => $news));

замените на

echo json_encode(Array("news" => $news));

Добавьте записей 30-40, будет достаточно для тестов. И в записях должно быть побольше текста (я имею ввиду new_text).

Link to comment
Share on other sites

  • 0

поставил utf8mb4_genral_ci, но текст стал вот таким "new_title":"\u041f\u0435\u0441\u043a\u043e\u0432 \u043e \u0441\u0430\u043d\u043a\u0446\u0438\u044f\u0445 \u043f\u0440\u043e\u0442\u0438\u0432 \u0420\u043e\u0441\u0441\u0438\u0438: \u043d\u043e\u0432\u044b\u0435 \u0448\u0430\u0433\u0438 \u043d\u0435 \u043e\u0441\u0442\u0430\u043d\u0443\u0442\u0441\u044f \u0431\u0435\u0437 \u043e\u0442\u0432\u0435\u0442\u0430 =)

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