http://www.youngcreativity.seで
ニュースフィードであることがわかります。
ユーザーがニュースをアップロードすると、すべてのテキスト/ニュースが丸いボックスのように表示される可能性はありますか?フィードにニュースがいくつあると、ボックスのサイズが自動的に変更されます。phpコードは次のようになります。
<!DOCTYPE html>
<html lang='en'>
<head>
<style type="text/css">
#boxID{
border:2px solid;
border-radius:25px;
width:auto;
height:auto;
}
element {
color: black;
}
body {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-attachment: fixed;
background-image: url(bgn1.png);
background-repeat: no-repeat;
background-position: center top;
}
.news {
font-family: Rough_Typewriter;
font-size: 36px;
}
</style>
<meta charset="UTF-8">
<title>iWrite</title>
<meta name="view" content="width-device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<h1 class="news">iWrite</h1>
<p>
<hr>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<p>
<a href='post.php'>Want to post a text?</a>
<?php
//connect
mysql_connect("server","username","password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
//query the database
$getnews = mysql_query("SELECT * FROM news ORDER BY id DESC") or die(mysql_query());
while ($row = mysql_fetch_assoc($getnews))
{
//get data
$id = $row['id'];
$title = $row['title'];
$body = $row['body'];
$date = $row['date'];
echo "
<b>$title posted on $date</b><br>
";
echo nl2br($body);
echo "<hr>
";
}
mysql_real_escape_string();
?>
</hr></html>