Get exact row from database table
This is part of my source code that displays one row from getQuest recordset. Always first.
<body>
<p><?php echo $row_getQuest['content']; ?></p>
<p>: <?php echo $row_getQuest['prom1']; ?></p>
<p><?php echo $row_getQuest['prom2']; ?></p>
<?php echo $row_getQuest['dos1']; ?>(); <?php echo $row_getQuest['dos2']; ?> (); <?php echo $row_getQuest['dos3']; ?> (); <?php echo $row_getQuest['dos4']; ?>(); <?php echo $row_getQuest['dos5']; ?> (); <?php echo $row_getQuest['dos6']; ?> (); <?php echo $row_getQuest['dos7']; ?> ().
</body>
Can i change it so, that on this page it always displayed row with exact position in the table - for example second or 15th - independently of row contents and rows deletition, moving or changing in table?
