sql >> Database teknologi >  >> RDS >> Mysql

PHP MYSQL Associeret array og tabel

Du kan prøve at ændre

         <th>
            <?php
            foreach($columns as $column)
            { ?>
                <td><?php echo $column; ?> </td>
            <?php 
            }   
            ?>
        </th>

til

        <tr>
            <?php
            foreach($columns as $column)
            { ?>
                <th><?php echo $column; ?> </th>
            <?php 
            }   
            ?>
        </tr>


  1. Python MySQLdb fejl - hvad forårsager dette

  2. PhalconPHP-databasetransaktioner mislykkes på serveren

  3. Kontrol af værdi i et array inde i én SQL-forespørgsel med WHERE-sætning

  4. Løsninger til INSERT OR UPDATE på SQL Server