Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8732415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T09:26:06+00:00 2026-06-13T09:26:06+00:00

<?php function itemList(){ $items= array( skateboard => array( name => Skateboard type => drawings

  • 0
<?php
function itemList(){
    $items= array(
        "skateboard" => array(
            "name" => "Skateboard"
            "type" => "drawings"
            "namestripped" => "skateboard"
        ),
        "looklocal" => array(
            "name" => "Look Local"
            "type" => "graphic-design"
            "namestripped" => "looklocal"
        ),
    );          
    reset($items);          
    while (list(, $value) = each($items)) {
        echo '<li class="item '. $value["type"] .'">';
        echo '<a class="fancybox" rel="group" href="images/portfolio/' . $value["type"] . '/'. $value["namestripped"] . '_l.jpg">';
        echo '<img src="images/portfolio/' . $value["type"] . '/'. $value["namestripped"] . '.jpg" alt="' . $value . '"/>';   
        echo '<h3>' . $value["name"] . '</h3>';                                                   echo '</a>';
        echo '</li>';
    }
}
?>

How badly have I messed up the syntax? When I try this code it doesn’t output anything, not even the HTML.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T09:26:07+00:00Added an answer on June 13, 2026 at 9:26 am

    Your code only defines the function, but doesn’t execute it.

    You would execute it like so:

    itemList();
    

    EDIT You also had some typo’s in your PHP code. Here is the fixed version:

    function itemList()
    {
        $items = array(
            "skateboard" => array(
                "name"         => "Skateboard",
                "type"         => "drawings",
                "namestripped" => "skateboard"
            ),
            "looklocal" => array(
                "name"         => "Look Local",
                "type"         => "graphic-design",
                "namestripped" => "looklocal"
            ),
        );          
    
        foreach ($items AS $item)
        {
            echo '<li class="item '. $item["type"] .'">';
            echo '<a class="fancybox" rel="group" href="images/portfolio/' . $item["type"] . '/'. $item["namestripped"] . '_l.jpg">';
            echo '<img src="images/portfolio/' . $item["type"] . '/'. $item["namestripped"] . '.jpg" alt="' . $item . '"/>';   
            echo '<h3>' . $item["name"] . '</h3>';
            echo '</a>';
            echo '</li>';
        }
    }
    
    itemList();
    

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP function that builds a JSON array via $jsonArray= array(); for
Does PHP have a function that returns a file extension given a content type?
I have a PHP function that returns something: function myfunction() { $array = array('one',
Which php array function should be used to match a string to the first
I am making a PHP function to return an array of a mysql database's
Extract function of php adds variables to the local scope of the calling function.
Is there a PHP function that would 'pop' first element of array? array_pop() pops
My php function function generateMenu($parent, $level, $menu, $utype) { global $db; $tree = array();
Is there a PHP function to move an array key/value pair and make it
I have a PHP function which populates a multi-dimensional array $client->getResponse() I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.