How can i put the result in table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • manjava
    New Member
    • Sep 2009
    • 132

    #1

    How can i put the result in table

    I have this code
    Code:
    foreach($GetJobResult->Components->Component as $component_index=>$component) {
                        $quote_title= ($component_index+1).') '.$component->Title."\n";
                        //var_dump($component_index+1);
                        //die();
                        
                        if(isset($component->Paper->Family)) {
                            if(isset($component->Paper->Type) && isset($component->Paper->Color)) {
                                
                                
                                $getPaperInfoResult=$ws->getPaperInfo($component->Paper->Family,$component->Paper->Type);
                                
                                $quote_desc = $getPaperInfoResult->PapFamType[$component_index+1]->Lfam.' - '.$getPaperInfoResult->PapFamType[$component_index+1]->Lcoul.' - '.$getPaperInfoResult->PapFamType[$component_index+1]-> Gramm.' g/m2'."\n";
                                var_dump($quote_desc); 
                            }
                        }
                    }
    and how to put the result of $quote_desc on table with index

    Thanks in advance
Working...