display title by id in php

Viewed 26

I have a problem, the title from the last added post is displayed, but I would like the title to be displayed after the id.see the image

1 Answers

Try this, change the while to the <p>

<div class="post-anime">

<?php
while($row = mysali_fetch_assoc($query)) {
echo '<p class="titlu-anime">' . $row["titlu"] . '</p>';
}
?>

<!--<iframe allowfullscreen="true" sc="#" width="1245" height="600" ></iframe>-->
</div>

Related