grouping within a foreach?
Posted on
16th Feb 2014 07:03 pm by
admin
hello all,
I currently have a list of products spit out from my db via a foreach loop. Right now I am styling these as a <li>
I want to style the list so that the annual and the monthly products are grouped together. This will probably mean using <div> instead of <li> and placing another loop inside the foreach to grab two products and put them in one div?
Any ideas how this might be structured??
should I use a for loop?
here is the current code:
Code: $productnames = '<center><table><tr><td><ul id="prodlist">'."n"; // list of products that can view this content
$show2all = false; // are one of the products the "all" flag?
$numcanview = 0; // the number of products that can view this post
foreach ($_product_id as $pid)
{
$pid = trim(strtolower($pid)); // make sure no extra spaces and not "ALL" or something
if ($pid=="all")
{
$show2all = true; // used later
} else {
$purl = $this->amprotectamroot.'member.php?price_group='.$allthepricegroups[$pid].'&product_id='.$pid;
$productnames .= '<li><a href="'.$purl.'">'.$alltheproducts[$pid].'</a></li>'."n";
$numcanview++;
}
No comments posted yet
Your Answer:
Login to answer
103
48
Other forums
DYNPRO_FIELD_CONVERSION
Hi gurus,
I got a dump when I run one of my program. the dump is described below:
Logic question
im wondering what's the best method to do the above list:
it is for alliance @ MMORPG game
mySQL and PHP search
Hello,
I am trying to code a project and ran into a brick wall with one of my pages. I am pretty
Error: SQL Syntax; Line 1
Code:
<?php require "global_settings.php"; ?>
<title&g
Thread in PHP
Thread in PHP
Some basic use and basic code for thread in php
This is my question?
Sessions Value Not Saved
Hi,
Im making a login form and im using this code:
Code: if($login=="true"){
True way to see if action was successful?
If this is a good way to see if action was successful to continue:
Code: function changeGa
Converting numbers to months
The porgram works -just need the last function(month_convert_ to convert numbers to months -thanks.
ME54/ME54N Conditional check for Release of PR
Hi Gurus,
My requirement is to put a check on the release of the PR with respect to the c
Get relative path from absolute path
How would one go about getting the relative path to a file from its absolute path?