Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to create a HTML table from PHP array

1 Answer

0 votes
<?php
$s = array(
        array("title" => "aaa", "price" => 65.50),
        array("title" => "bbb", "price" => 923.00),
        array("title" => "ccc", "price" => 87.99),
        array("title" => "ddd", "price" => 7.35)
          );
?>
<?php if (count($s) > 0): ?>
    <table border=1 cellspacing=0 cellpading=0>
        <thead>
            <tr>
                <th><?php echo implode('</th><th>', array_keys(current($s))); ?></th>
            </tr>
        </thead>
        <tbody>
            <?php foreach ($s as $row): array_map('htmlentities', $row); ?>
                <tr>
                    <td><?php echo implode('</td><td>', $row); ?></td>
                </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
<?php endif; ?>

 



answered Feb 23, 2019 by avibootz
edited Feb 23, 2019 by avibootz

Related questions

1 answer 223 views
1 answer 382 views
1 answer 170 views
1 answer 536 views
1 answer 156 views
156 views asked Dec 13, 2018 by avibootz
1 answer 145 views
145 views asked Dec 12, 2018 by avibootz
...