我正在创建一个新项目,它是一个播客网站。
在这个网站上,我希望只显示最新添加内容的标题、描述和音频文件。
我的index.php有这段代码
<?php
include_once('include/connection.php');
include_once('include/article.php');
$cast = new cast;
$articles = $cast->fetch_all();
?>
<html>
<head>
<title>Podcast Website</title>
<link rel="stylesheet" href="style.css" />
</head>
<?php include_once('header.php'); ?>
<body>
<div class="container">
<ol>
<h1>Latest Episode</h1>
<?php foreach ($articles as $cast) { ?>
<b><?php echo $cast['cast_title']; ?></b>
<br><br>
<audio controls>
<source src="<?php echo $cast['cast_audio']; ?>" type="audio/mpeg">
<source src="<?php echo $cast['cast_audio']; ?>" type="audio/ogg">
Your browser does not support this audio format.
</audio> <br><br>
<?php echo $cast['cast_about']; ?><br><br>
<a href="episode.php?id=<?php echo $cast['cast_id']; ?>">
<font size="2">View show notes</font></a>
<br><br><divider /><br><br>
<?php } ?>
</ol>
<br><br>
<h2>Past Episodes<h2>
<br><br>
<br><small><a href="admin">admin</small></a>
</div>
</body>
<?php include_once('footer.php'); ?>
</html>
这显示了我的两个列表,但我只需要它来显示最新的。
我怎样才能让它只在它说的地方显示 1<h1>Latest Episode</h1>
。
如果您需要更多信息,请询问,我会提供。
请帮忙。
谢谢你。
凯夫