sql >> Database >  >> RDS >> Mysql

Zoekresultaten in een tabel afdrukken

Zoals dit:

<?php
$result = mysql_query("SELECT subject, actions FROM info WHERE category='$find' ORDER BY votes DESC") or die(mysql_error());

if(mysql_num_rows($result) > 0): ?>
<table>
    <tr>
        <th>Subject</th>
        <th>Actions</th>
    <tr>
    <?php while($row = mysql_fetch_assoc($result)): ?>
    <tr>
        <td><?php echo $row['subject']; ?></td>
        <td><?php echo $row['actions']; ?></td>
    </tr>
    <?php endwhile; ?>
</table>
<?php endif; ?>



  1. Hoe mysql-gegevens in bulk bijwerken met één query?

  2. INET_ATON() en INET_NTOA() in PHP?

  3. Is dit een veilige methode om formuliergegevens in een MySQL-database in te voegen?

  4. Functie wijzigen in PDO