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

  • Home
  • SEARCH
  • 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 3214624
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:04:58+00:00 2026-05-17T15:04:58+00:00

I am creating a report with the data which calls the stored procedure and

  • 0

I am creating a report with the data which calls the stored procedure and that procedure returns
various sections (1,2,3,4,5,6) with the data in each section.Now the sections may contain or may
not contain the data.This is how i have wriiten my logic

 foreach($this->$dbresults as $row){
$var1 ='';
 If($var1!=$row['section']){
switch($row['section']){
case '1':echo "some thing data";
     break;
case '2':echo "some thing data";
     break;
case '3':echo "some thing data";
     break;
case '4':echo "some thing data";
     break;
case '5':echo "some thing data";
     break;
case '6':echo "some thing data";
     break;
}
  } 

$var1=$row['section']
}

So here My problem if any one of the section is not present then that section case cannot be executed
.I mean How do i execute the section even if the section is not returned from the database

  • 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-05-17T15:04:59+00:00Added an answer on May 17, 2026 at 3:04 pm

    I guess you’re already ordering your results by section. If your sections are really 1-n, you could put your switch() code into some runsections function and do this:

    $var1=0; $lastsection=16;
    foreach($this->dbresults as $row) {
      If($var1!=$row['section']){
        for($num=$var1+1; $num<$row['section']; $num++) runsections($num);
        runsections($row['section']);
      }
      $var1=$row['section'];
    }
    for($num=$var1+1;$num<=$lastsection;$num++) runsections($num);
    

    if your sections aren’t sequential numbers you could create an array and check if they’ve all been executed

    $sections=array('a'=>0,'b'=>0,'c'=>0,'d'=>0,'e'=>0);
    If($var1!=$row['section']){
        unset($sections[$row['section']]);
        runsection($row['section']);
    }
    ...
    }
    foreach($sections as $num) {
        runsection($num);
    }
    

    edit: so the runsections() function would look like this:

    function runsections($section) {
        switch($section){
        case '1':echo "some thing data";
             break;
        case '2':echo "some thing data";
             break;
        case '3':echo "some thing data";
             break;
        case '4':echo "some thing data";
             break;
        case '5':echo "some thing data";
             break;
        case '6':echo "some thing data";
             break;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

An iPhone app which I am creating generates reports from a Core Data database
While creating classes in Java I often find myself creating instance-level collections that I
We are tasked with creating a reporting frameworks that does the following. Clients can
I created a report using wizard and while creating I selected 4 columns for
I'm creating a process with the System.Diagnostics.Process object that sometimes crashes badly and Windows
When creating reports using BIRT 2.3.1, I don't want page breaks inside tables or
Creating a patch is very easy in SubVersion, With Tortoise, you right-click and select
Creating hashes of hashes in Ruby allows for convenient two (or more) dimensional lookups.
Creating Traversals for Binary Search Tree with Recursion. void inOrder(void (*inOrderPtr)(T&)) { if(this->left !=
Creating an XPathDocument with referenced DTD sometimes throws a web exception. Why?

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.