Jump to content

Array to Table


tobeyt23
Go to solution Solved by Barand,

Recommended Posts

I have an array and want to generate a table for each data set that has the same product name. Completely drawning a brain fart on this one.

Array
(
    [0] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR
                    [county] => KENT
                    [mean] => 366.67
                    [median] => 375.00
                    [mode] => 375.00
                )

        )

    [1] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR
                    [county] => NEW CASTLE
                    [mean] => 360.00
                    [median] => 375.00
                    [mode] => 375.00
                )

        )

    [2] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR
                    [county] => SUSSEX
                    [mean] => 378.57
                    [median] => 375.00
                    [mode] => 375.00
                )

        )

    [3] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR W MC & UAD
                    [county] => KENT
                    [mean] => 0.00
                    [median] => 0.00
                    [mode] => 0.00
                )

        )

    [4] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR W MC & UAD
                    [county] => NEW CASTLE
                    [mean] => 0.00
                    [median] => 0.00
                    [mode] => 0.00
                )

        )

    [5] => Array
        (
            [product] => Array
                (
                    [name] => 1004 URAR W MC & UAD
                    [county] => SUSSEX
                    [mean] => 0.00
                    [median] => 0.00
                    [mode] => 0.00
                )

        )

    [6] => Array
        (
            [product] => Array
                (
                    [name] => 1073 CONDO
                    [county] => KENT
                    [mean] => 370.83
                    [median] => 375.00
                    [mode] => 375.00
                )

        )

    [7] => Array
        (
            [product] => Array
                (
                    [name] => 1073 CONDO
                    [county] => NEW CASTLE
                    [mean] => 305.65
                    [median] => 375.00
                    [mode] => 375.00
                )

        )

    [8] => Array
        (
            [product] => Array
                (
                    [name] => 1073 CONDO
                    [county] => SUSSEX
                    [mean] => 375.00
                    [median] => 400.00
                    [mode] => 400.00
                )

        )
)

So i want a new table when the ['product']['name'] doesn't match. Any suggestions, thanks in advance

Link to comment
Share on other sites

  • Solution

A better array structure to start from would have helped. If your array is $data, then this will transform to an easier array for your task

$newdata = array();
foreach ($data as $prod) {
    $newdata[$prod['product']['name']][] = array_slice($prod['product'],1);
}
echo '<pre>',print_r($newdata, true),'</pre>';

/** RESULTING ARRAY *****************************
Array
(
    [1004 URAR] => Array
        (
            [0] => Array
                (
                    [county] => KENT
                    [mean] => 366.67
                    [median] => 375
                    [mode] => 375
                )

            [1] => Array
                (
                    [county] => NEW CASTLE
                    [mean] => 360
                    [median] => 375
                    [mode] => 375
                )

            [2] => Array
                (
                    [county] => SUSSEX
                    [mean] => 378.57
                    [median] => 375
                    [mode] => 375
                )

        )

    [1004 URAR W MC & UAD] => Array
        (
            [0] => Array
                (
                    [county] => KENT
                    [mean] => 0
                    [median] => 0
                    [mode] => 0
                )

            [1] => Array
                (
                    [county] => NEW CASTLE
                    [mean] => 0
                    [median] => 0
                    [mode] => 0
                )

            [2] => Array
                (
                    [county] => SUSSEX
                    [mean] => 0
                    [median] => 0
                    [mode] => 0
                )

        )

    [1073 CONDO] => Array
        (
            [0] => Array
                (
                    [county] => KENT
                    [mean] => 370.83
                    [median] => 375
                    [mode] => 375
                )

            [1] => Array
                (
                    [county] => NEW CASTLE
                    [mean] => 305.65
                    [median] => 375
                    [mode] => 375
                )

            [2] => Array
                (
                    [county] => SUSSEX
                    [mean] => 375
                    [median] => 400
                    [mode] => 400
                )

        )

)
***********************************************/

Link to comment
Share on other sites

Just for topic completion I am posting a solution using the revised array format

$tHead = "<table cellpadding='5' border='1' style='border-collapse: collapse'>
    <tr><th>County</th><th>Mean</th><th>Median</th><th>Mode</th></tr>\n";
$tFoot = "</table><br><br>\n";

foreach ($newdata as $name => $arr) {
    echo "<strong>$name</strong><br>$tHead";
    foreach ($arr as $row) {
        echo "<tr><td>" . join('</td><td>', $row) . "</td></tr>\n";
    }
    echo $tFoot;
}
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.