Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/21/2024 in all areas

  1. If you want to add another key to the results array add it to the query, and use @mac_gyver method.
    1 point
  2. ... or ... $res = $pdo->query("SELECT Lvl , Sub FROM shadd_1 ORDER BY Lvl DESC, Sub "); $results = $res->fetchAll(PDO::FETCH_GROUP | PDO::FETCH_COLUMN); foreach ($results as $lvl => $arr) { echo "$lvl <UL>"; foreach ($arr as $sub) { echo "<li>$sub</li>"; } echo "</ul>"; } FYI - the $results array (slightly simpler than the $data array in above post) looks like this.. Array ( [ULE] => Array ( [0] => BASIC lug [1] => BASIC lug ) [ACE] => Array ( [0] => ger ) )
    1 point
  3. You need to use the MailJet API.
    1 point
  4. Never a good idea to allow for spaces in directories or file names. BTW, docker is a good way to locally simulate a deployment platform that differs from your development platform.
    1 point
  5. Sounds analagous to asking "How important is a knowledge of anatomy for being a surgeion?"
    1 point
  6. ...Your question is how important it is for someone to know the fundamentals of what they're working with?
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • 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.