SlideShare a Scribd company logo
1 of 11
<html>
<head>
       <title>Load Database</title>
</head>
<body>

         <?php
                 $mydatabase = "deltamaxfeb12_5pm";

                 $conn = mysql_connect('localhost','root','') or die('NO CONNECTION');
                 $db = mysql_select_db($mydatabase, $conn);
         ?>

</body>
</html>
<html>
<head>
       <title>By PO</title>
       <link rel="stylesheet" type="text/css" href="../css/orderbulk.css"/>
       <link rel="stylesheet" type="text/css" href="../css/orderdailywhole.css"/>
       <? include('dbloading.php');     ?>
       <? include('session_within.php');        ?>
</head>
<body>

<?php
extract($_GET);

/*

<a href="<?php echo $url; ?>receive=<?php echo $row['order_id']."&&".$urlpage; ?>#bottom">
        <span title='<?echo 'Order:'."t".$username;?>'>
                <img src='../photos/receivenow.png'/>
        </span>
</a>

*/

$qtyinz = 0;
$qtyinzdec = 0;
$qtyinzcandue = 0;
$qtyinzinit = 0;
$qtyinzcanc = 0;

$yearcomplete = date('Y');
$yearfirstdigit = substr($yearcomplete, 0,1);
$year2digit = date('y');

echo "<div style='width: 800px; text-align: left;'>";
       echo "<form method='GET'>";

                  echo "<table style='font-family: arial; font-size: 12px;'>";
                         echo "<tr>";
                                  echo "<td>";
                                          echo "<div class='divsupplierselect'>";
                                                   echo "&nbsp; Purchase Order (P.O): &nbsp;";
echo "<input type='text' class='aorpodti' value='DTI'
disabled='disable'/> - ";
                                              echo "<select name='poselect' class='dateselect'>";
                                              ?>
                                              <option value="" class="aor"><?php if($poselect !=
NULL){ echo $poselect; }?></option>
                                              <?php

                                                      @$sqlduration = "SELECT
DISTINCT(order_information.po) as podist
                                                                                         FROM
order_information
                                                                                         WHERE
order_information.po IS NOT NULL
                                                                                         AND
order_information.po != 'DTI-$poselect'
                                                                                         ORDER BY
order_information.po";
                                                      $queryduration = mysql_query($sqlduration);
                                                      $countduration =
mysql_num_rows($queryduration);

                                                      for($x=0;$x<$countduration;$x++){
                                                              $dataduration =
mysql_fetch_array($queryduration);
                                                              $bypo = $dataduration['podist'];

                                                              $restbypo = substr($bypo, 4);
                                                              echo "<option value='$restbypo'>
$restbypo </option>";
                                                      }
                                               echo "</select>";
                                       echo "</div>";
                               echo "</td>";
                               echo "<td>";
                               echo "&nbsp;&nbsp;&nbsp;";
                               echo "</td>";
                               echo "<td>";
                               echo "<input type='submit' value='Load' name='submiteditpo'
class='reportsubmit'/>";
                               echo "<input type='hidden' value='3' name='profile'/>";
                               echo "</td>";
echo "</tr>";
               echo "</table>";
       echo "</form>";
echo "</div>";
echo "<br/>";

if(isset($submiteditpo) && ($poselect != NULL)){
          echo "<table border='0' cellpadding='0' cellspacing='5' style='width: 800px;'>";

               @$sqlduration = "SELECT DISTINCT(order_information.supplier_id) as company,
supplier_information.*
                                               FROM order_information
                                               LEFT JOIN supplier_information ON
supplier_information.supplier_id = order_information.supplier_id
                                               WHERE order_information.po='DTI-$poselect'";
               $queryduration = mysql_query($sqlduration);
               $countduration = mysql_num_rows($queryduration);

                echo "<tr>";
                       echo "<td colspan='5' style='font-weight: bold; color: #d5a500;'>";
                               echo "DTI-".$poselect;
                       echo "</td>";
                echo "</tr>";

                echo "<tr>";
                       echo "<td colspan='5'>";
                               echo "&nbsp;";
                       echo "</td>";
                echo "</tr>";

                echo "<tr>";
                       echo "<td class='bypogold'>";
                               echo "SUPPLIER: ";
                       echo "</td>";
                       echo "<td class='bypowhite'>";
                               for($x=0;$x<$countduration;$x++){
                                       $dataduration = mysql_fetch_array($queryduration);
                                       $suppbypo = $dataduration['company'];

                                         echo $suppbypo;
                                }
                         echo "</td>";
echo "</tr>";

               @$sqlduration = "SELECT order_information.*, order_duration.*
                                             FROM order_information
                                             LEFT JOIN order_duration ON order_duration.order_id
= order_information.order_id
                                             WHERE order_information.po='DTI-$poselect'";

              $queryduration = mysql_query($sqlduration);
              $countduration = mysql_num_rows($queryduration);

              for($x=0;$x<$countduration;$x++){
                      $dataduration = mysql_fetch_array($queryduration);
                      $dateorder = $dataduration['date_order'];
                      $datetoreceive = $dataduration['date_of_receiving'];
                      $dateorid = $dataduration['order_id'];
              }

              echo "<tr>";
                     echo "<td class='bypogold'>";
                             echo "ORDER DATE: ";
                     echo "</td>";
                     echo "<td class='bypowhite'>";
                             echo $dateorder;
                     echo "</td>";
              echo "</tr>";

              echo "<tr>";
                     echo "<td class='bypogold'>";
                             echo "ARRIVAL DATE: ";
                     echo "</td>";
                     echo "<td class='bypowhite'>";
                             echo $datetoreceive;
                     echo "</td>";
              echo "</tr>";

              echo "<tr>";
                     echo "<td colspan='5'>";
                             echo "&nbsp;";
                     echo "</td>";
              echo "</tr>";
echo "<tr style='font-weight: bold;'>";
       echo "<td class='bypodescgoldblack'>";
                 echo "PRODUCT CODE";
       echo "</td>";
       echo "<td class='bypodescgoldblack'>";
                 echo "DESCRIPTION";
       echo "</td>";
       echo "<td class='bypodescgoldblack'>";
                 echo "QUANTITY";
       echo "</td>";
       echo "<td class='bypodescgoldblack'>";
                 echo "CATEGORY";
       echo "</td>";
echo "</tr>";

@$sqlduration = "SELECT order_information.*
                              FROM order_information
                              WHERE order_information.po='DTI-$poselect'";
$queryduration = mysql_query($sqlduration);
$countduration = mysql_num_rows($queryduration);



for($x=1;$x<=$countduration;$x++){
        $dataduration = mysql_fetch_array($queryduration);
        $ordis = $dataduration['order_id'];
        $categoryis = $dataduration['category_id'];
        $statusis = $dataduration['status'];
        $pcodeis = $dataduration['product_code'];
        $pnameis = $dataduration['product_name'];
        $suppidis = $dataduration['supplier_id'];

       echo "<tr>";
               echo "<td class='bypowhite'>";
                      echo $pcodeis;
               echo "</td>";
               echo "<td class='bypowhite'>";
                      echo $pnameis;
               echo "</td>";

               @$sqlqtyin = "SELECT order_quantity_in.*
                                             FROM order_quantity_in
WHERE
order_quantity_in.order_id='".$ordis."'";

                                $queryqtyin = mysql_query($sqlqtyin);
                                $countqtyin = mysql_num_rows($queryqtyin);



                                for($q=0;$q<$countqtyin;$q++){
                                        $dataqtyin = mysql_fetch_array($queryqtyin);
                                        $qtyin = $dataqtyin['quantity_in'];

                                        echo "<td style='text-align: right; color: white; font-size:
13px;'>";
                                        echo $qtyin;
                                        echo "&nbsp;&nbsp;&nbsp;&nbsp;";
                                        echo "</td>";

                                        $qtyinz = $qtyinz + $qtyin;
                                }

                               @$sqlcategis = "SELECT order_category.*
                                                              FROM order_category
                                                              WHERE
order_category.category_id='".$categoryis."'";

                                $querycategis = mysql_query($sqlcategis);
                                $countcategis= mysql_num_rows($querycategis);

                                for($c=0;$c<$countcategis;$c++){
                                        $datacategis = mysql_fetch_array($querycategis);
                                        $categis = $datacategis['category'];

                                        echo "<td class='bypowhite'>";
                                        echo $categis;
                                        echo "</td>";
                                }

                                        echo "<td style='text-align: right;'>";
                                        if($statusis == "Cancelled"){
                                                 echo "<img src='../photos/cancelled.png'/>";
                                        }
                                        if($statusis == "CancelledDue"){
echo "<img src='../photos/cancelledDue.png'/>";
                                      }
                                      if($statusis == "Declared"){
                                               echo "<img src='../photos/declaredgreen.png'/>";
                                      }
                                      if($statusis == "Initializing"){
                                               echo "<img src='../photos/ongoing.png'/>";
                                      }
                                      echo "</td>";
                      echo "</tr>";
               }

                      @$sqldurationcan = "SELECT order_information.*
                                                           FROM order_information
                                                           WHERE order_information.po='DTI-
$poselect'
                                                             AND
order_information.status='Initializing'";
                       $querydurationcan = mysql_query($sqldurationcan);
                       $countdurationcan = mysql_num_rows($querydurationcan);

                      for($xcan=1;$xcan<=$countdurationcan;$xcan++){
                              $dataduration = mysql_fetch_array($querydurationcan);
                      }

                      @$sqlqtyindec = "SELECT order_quantity_in.*, order_information.*
                                               FROM order_quantity_in
                                               LEFT JOIN order_information ON
order_information.order_id = order_quantity_in.order_id
                                                WHERE order_information.po='DTI-$poselect'
                                               AND order_information.status='declared'";

                      $queryqtyindec = mysql_query($sqlqtyindec);
                      $countqtyindec = mysql_num_rows($queryqtyindec);

                      for($qdec=0;$qdec<$countqtyindec;$qdec++){
                             $dataqtyindec = mysql_fetch_array($queryqtyindec);
                             $qtyindec = $dataqtyindec['quantity_in'];

                              $qtyinzdec = $qtyinzdec + $qtyindec + 0;
                      }
@$sqlqtyincandue = "SELECT order_quantity_in.*, order_information.*
                                               FROM order_quantity_in
                                               LEFT JOIN order_information ON
order_information.order_id = order_quantity_in.order_id
                                                WHERE order_information.po='DTI-$poselect'
                                               AND order_information.status='cancelleddue'";

                       $queryqtyincandue = mysql_query($sqlqtyincandue);
                       $countqtyincandue = mysql_num_rows($queryqtyincandue);

                       for($qcandue=0;$qcandue<$countqtyincandue;$qcandue++){
                               $dataqtyincandue = mysql_fetch_array($queryqtyincandue);
                               $qtyincandue = $dataqtyincandue['quantity_in'];

                              $qtyinzcandue = $qtyinzcandue + $qtyincandue + 0;
                       }

                      @$sqlqtyininit = "SELECT order_quantity_in.*, order_information.*
                                               FROM order_quantity_in
                                               LEFT JOIN order_information ON
order_information.order_id = order_quantity_in.order_id
                                                WHERE order_information.po='DTI-$poselect'
                                               AND order_information.status='initializing'";

                       $queryqtyininit = mysql_query($sqlqtyininit);
                       $countqtyininit = mysql_num_rows($queryqtyininit);

                       for($qinit=0;$qinit<$countqtyininit;$qinit++){
                               $dataqtyininit = mysql_fetch_array($queryqtyininit);
                               $qtyininit = $dataqtyininit['quantity_in'];

                              $qtyinzinit = $qtyinzinit + $qtyininit + 0;
                       }

                      @$sqlqtyincanc = "SELECT order_quantity_in.*, order_information.*
                                               FROM order_quantity_in
                                               LEFT JOIN order_information ON
order_information.order_id = order_quantity_in.order_id
                                                WHERE order_information.po='DTI-$poselect'
                                               AND order_information.status='cancelled'";

                       $queryqtyincanc = mysql_query($sqlqtyincanc);
$countqtyincanc = mysql_num_rows($queryqtyincanc);

for($qcanc=0;$qcanc<$countqtyincanc;$qcanc++){
        $dataqtyincanc = mysql_fetch_array($queryqtyincanc);
        $qtyincanc = $dataqtyincanc['quantity_in'];

        $qtyinzcanc = $qtyinzcanc + $qtyincanc + 0;
}

echo "<tr>";
        echo "<td colspan='5'>";
               echo "&nbsp;";
        echo "</td>";
echo "</tr>";

echo "<tr>";
        echo "<td colspan='4' class='bypofinaldesc'>";
               echo "TOTAL ORDER:";
        echo "</td>";
        echo "<td style='text-align: right; font-weight: bold; color: white;'>";
               echo $countduration;
               echo "&nbsp;&nbsp;";
        echo "</td>";
echo "</tr>";

echo "<tr>";
        echo "<td colspan='5'>";
               echo "&nbsp;";
        echo "</td>";
echo "</tr>";

echo "<tr>";
        echo "<td colspan='4' class='bypofinaldesc'>";
               echo "INITIALIZING:";
        echo "</td>";
        echo "<td style='text-align: right; color: white;'>";
               echo $qtyinzinit;
               echo "&nbsp;&nbsp;";
        echo "</td>";
echo "</tr>";

echo "<tr>";
echo "<td colspan='4' class='bypofinaldesc'>";
                                  echo "DECLARED:";
                           echo "</td>";
                           echo "<td style='text-align: right; color: white;'>";
                                  echo $qtyinzdec;
                                  echo "&nbsp;&nbsp;";
                           echo "</td>";
                    echo "</tr>";

                    echo "<tr>";
                            echo "<td colspan='4' class='bypofinaldesc'>";
                                   echo "CANCELLED:";
                            echo "</td>";
                            echo "<td style='text-align: right; color: white;'>";
                                   echo $qtyinzcanc;
                                   echo "&nbsp;&nbsp;";
                            echo "</td>";
                    echo "</tr>";

                    echo "<tr>";
                            echo "<td colspan='4' class='bypofinaldesc'>";
                                   echo "CANCELLED DUE:";
                            echo "</td>";
                            echo "<td style='text-align: right; color: white;'>";
                                   echo $qtyinzcandue;
                                   echo "&nbsp;&nbsp;";
                            echo "</td>";
                    echo "</tr>";

                    echo "<tr>";
                            echo "<td colspan='4' class='bypofinaldesc'>";
                                   echo "TOTAL QUANTITY:";
                            echo "</td>";
                            echo "<td style='text-align: right; font-weight: bold; color: white;'>";
                                   echo $qtyinz;
                                   echo "&nbsp;&nbsp;";
                            echo "</td>";
                    echo "</tr>";

     echo "</table>";
}
?>

More Related Content

What's hot

Gta v savegame
Gta v savegameGta v savegame
Gta v savegamehozayfa999
 
Smelling your code
Smelling your codeSmelling your code
Smelling your codeRaju Mazumder
 
Object Calisthenics Applied to PHP
Object Calisthenics Applied to PHPObject Calisthenics Applied to PHP
Object Calisthenics Applied to PHPGuilherme Blanco
 
Models and Service Layers, Hemoglobin and Hobgoblins
Models and Service Layers, Hemoglobin and HobgoblinsModels and Service Layers, Hemoglobin and Hobgoblins
Models and Service Layers, Hemoglobin and HobgoblinsRoss Tuck
 
PHP for Adults: Clean Code and Object Calisthenics
PHP for Adults: Clean Code and Object CalisthenicsPHP for Adults: Clean Code and Object Calisthenics
PHP for Adults: Clean Code and Object CalisthenicsGuilherme Blanco
 
Drupal 8 database api
Drupal 8 database apiDrupal 8 database api
Drupal 8 database apiViswanath Polaki
 
Object Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHPObject Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHPChad Gray
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLNur Fadli Utomo
 
Dependency Injection with PHP and PHP 5.3
Dependency Injection with PHP and PHP 5.3Dependency Injection with PHP and PHP 5.3
Dependency Injection with PHP and PHP 5.3Fabien Potencier
 
dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus
 
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)Decouple Your Code For Reusability (International PHP Conference / IPC 2008)
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)Fabien Potencier
 
What Is Security
What Is SecurityWhat Is Security
What Is SecurityJason Ragsdale
 
PHP tips and tricks
PHP tips and tricks PHP tips and tricks
PHP tips and tricks Damien Seguy
 
Separation of concerns - DPC12
Separation of concerns - DPC12Separation of concerns - DPC12
Separation of concerns - DPC12Stephan HochdĂśrfer
 
Topological indices (t is) of the graphs to seek qsar models of proteins com...
Topological indices (t is) of the graphs  to seek qsar models of proteins com...Topological indices (t is) of the graphs  to seek qsar models of proteins com...
Topological indices (t is) of the graphs to seek qsar models of proteins com...Jitendra Kumar Gupta
 
Tulsa techfest2010 security
Tulsa techfest2010   securityTulsa techfest2010   security
Tulsa techfest2010 securityJason Ragsdale
 

What's hot (20)

Gta v savegame
Gta v savegameGta v savegame
Gta v savegame
 
Smelling your code
Smelling your codeSmelling your code
Smelling your code
 
Object Calisthenics Applied to PHP
Object Calisthenics Applied to PHPObject Calisthenics Applied to PHP
Object Calisthenics Applied to PHP
 
Models and Service Layers, Hemoglobin and Hobgoblins
Models and Service Layers, Hemoglobin and HobgoblinsModels and Service Layers, Hemoglobin and Hobgoblins
Models and Service Layers, Hemoglobin and Hobgoblins
 
Drupal7 dbtng
Drupal7  dbtngDrupal7  dbtng
Drupal7 dbtng
 
PHP for Adults: Clean Code and Object Calisthenics
PHP for Adults: Clean Code and Object CalisthenicsPHP for Adults: Clean Code and Object Calisthenics
PHP for Adults: Clean Code and Object Calisthenics
 
Drupal 8 database api
Drupal 8 database apiDrupal 8 database api
Drupal 8 database api
 
PHP 5.4
PHP 5.4PHP 5.4
PHP 5.4
 
Object Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHPObject Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHP
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQL
 
Agile database access with CakePHP 3
Agile database access with CakePHP 3Agile database access with CakePHP 3
Agile database access with CakePHP 3
 
Dependency Injection with PHP and PHP 5.3
Dependency Injection with PHP and PHP 5.3Dependency Injection with PHP and PHP 5.3
Dependency Injection with PHP and PHP 5.3
 
dcs plus Catalogue 2015
dcs plus Catalogue 2015dcs plus Catalogue 2015
dcs plus Catalogue 2015
 
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)Decouple Your Code For Reusability (International PHP Conference / IPC 2008)
Decouple Your Code For Reusability (International PHP Conference / IPC 2008)
 
What Is Security
What Is SecurityWhat Is Security
What Is Security
 
PHP tips and tricks
PHP tips and tricks PHP tips and tricks
PHP tips and tricks
 
Separation of concerns - DPC12
Separation of concerns - DPC12Separation of concerns - DPC12
Separation of concerns - DPC12
 
Quebec pdo
Quebec pdoQuebec pdo
Quebec pdo
 
Topological indices (t is) of the graphs to seek qsar models of proteins com...
Topological indices (t is) of the graphs  to seek qsar models of proteins com...Topological indices (t is) of the graphs  to seek qsar models of proteins com...
Topological indices (t is) of the graphs to seek qsar models of proteins com...
 
Tulsa techfest2010 security
Tulsa techfest2010   securityTulsa techfest2010   security
Tulsa techfest2010 security
 

Viewers also liked

PresentaciĂłn de Herramientas Virtuales
PresentaciĂłn de Herramientas VirtualesPresentaciĂłn de Herramientas Virtuales
PresentaciĂłn de Herramientas VirtualesOnizukar
 
SOBERBIO DALI
SOBERBIO DALISOBERBIO DALI
SOBERBIO DALIJorge Llosa
 
Instituto de educaciĂłn media superior del d (2)
Instituto de educaciĂłn media superior del d (2)Instituto de educaciĂłn media superior del d (2)
Instituto de educaciĂłn media superior del d (2)guerito15
 
PresentaciĂłn1. la corrosion Evelio Vasquez
PresentaciĂłn1. la corrosion Evelio VasquezPresentaciĂłn1. la corrosion Evelio Vasquez
PresentaciĂłn1. la corrosion Evelio VasquezEvelio Vasquez
 
Sgws 2013 auction catalog 4
Sgws 2013 auction catalog 4Sgws 2013 auction catalog 4
Sgws 2013 auction catalog 4Amy Hecky
 

Viewers also liked (9)

Simpson
SimpsonSimpson
Simpson
 
Diapositiva proyecto
Diapositiva proyectoDiapositiva proyecto
Diapositiva proyecto
 
PresentaciĂłn de Herramientas Virtuales
PresentaciĂłn de Herramientas VirtualesPresentaciĂłn de Herramientas Virtuales
PresentaciĂłn de Herramientas Virtuales
 
Ciencias Del Deporte
Ciencias Del DeporteCiencias Del Deporte
Ciencias Del Deporte
 
SOBERBIO DALI
SOBERBIO DALISOBERBIO DALI
SOBERBIO DALI
 
Instituto de educaciĂłn media superior del d (2)
Instituto de educaciĂłn media superior del d (2)Instituto de educaciĂłn media superior del d (2)
Instituto de educaciĂłn media superior del d (2)
 
PresentaciĂłn1. la corrosion Evelio Vasquez
PresentaciĂłn1. la corrosion Evelio VasquezPresentaciĂłn1. la corrosion Evelio Vasquez
PresentaciĂłn1. la corrosion Evelio Vasquez
 
Sgws 2013 auction catalog 4
Sgws 2013 auction catalog 4Sgws 2013 auction catalog 4
Sgws 2013 auction catalog 4
 
RĂĄdio da escola
RĂĄdio da escolaRĂĄdio da escola
RĂĄdio da escola
 

Similar to php plus mysql

C A S Sample Php
C A S Sample PhpC A S Sample Php
C A S Sample PhpJH Lee
 
Php update and delet operation
Php update and delet operationPhp update and delet operation
Php update and delet operationsyeda zoya mehdi
 
Propel sfugmd
Propel sfugmdPropel sfugmd
Propel sfugmdiKlaus
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivityMouli Chandira
 
The History of PHPersistence
The History of PHPersistenceThe History of PHPersistence
The History of PHPersistenceHugo Hamon
 
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011Masahiro Nagano
 
Zero to SOLID
Zero to SOLIDZero to SOLID
Zero to SOLIDVic Metcalfe
 
8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会Yusuke Ando
 
Php 102: Out with the Bad, In with the Good
Php 102: Out with the Bad, In with the GoodPhp 102: Out with the Bad, In with the Good
Php 102: Out with the Bad, In with the GoodJeremy Kendall
 
Pemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionPemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionNur Fadli Utomo
 
Karan - form search
Karan - form searchKaran - form search
Karan - form searchkaranchanana1
 
Your code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnConYour code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnConRafael Dohms
 

Similar to php plus mysql (20)

C A S Sample Php
C A S Sample PhpC A S Sample Php
C A S Sample Php
 
Php (1)
Php (1)Php (1)
Php (1)
 
Php update and delet operation
Php update and delet operationPhp update and delet operation
Php update and delet operation
 
Propel sfugmd
Propel sfugmdPropel sfugmd
Propel sfugmd
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivity
 
The History of PHPersistence
The History of PHPersistenceThe History of PHPersistence
The History of PHPersistence
 
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011
Designing Opeation Oriented Web Applications / YAPC::Asia Tokyo 2011
 
Coding website
Coding websiteCoding website
Coding website
 
Zero to SOLID
Zero to SOLIDZero to SOLID
Zero to SOLID
 
8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会
 
Database api
Database apiDatabase api
Database api
 
Php 102: Out with the Bad, In with the Good
Php 102: Out with the Bad, In with the GoodPhp 102: Out with the Bad, In with the Good
Php 102: Out with the Bad, In with the Good
 
My shell
My shellMy shell
My shell
 
Pemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionPemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan Session
 
Karan chanan
Karan chananKaran chanan
Karan chanan
 
Karan - form search
Karan - form searchKaran - form search
Karan - form search
 
Presentation1
Presentation1Presentation1
Presentation1
 
Daily notes
Daily notesDaily notes
Daily notes
 
21. CodeIgniter search
21. CodeIgniter search21. CodeIgniter search
21. CodeIgniter search
 
Your code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnConYour code sucks, let's fix it - DPC UnCon
Your code sucks, let's fix it - DPC UnCon
 

Recently uploaded

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vĂĄzquez
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 

Recently uploaded (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

php plus mysql

  • 1. <html> <head> <title>Load Database</title> </head> <body> <?php $mydatabase = "deltamaxfeb12_5pm"; $conn = mysql_connect('localhost','root','') or die('NO CONNECTION'); $db = mysql_select_db($mydatabase, $conn); ?> </body> </html>
  • 2. <html> <head> <title>By PO</title> <link rel="stylesheet" type="text/css" href="../css/orderbulk.css"/> <link rel="stylesheet" type="text/css" href="../css/orderdailywhole.css"/> <? include('dbloading.php'); ?> <? include('session_within.php'); ?> </head> <body> <?php extract($_GET); /* <a href="<?php echo $url; ?>receive=<?php echo $row['order_id']."&&".$urlpage; ?>#bottom"> <span title='<?echo 'Order:'."t".$username;?>'> <img src='../photos/receivenow.png'/> </span> </a> */ $qtyinz = 0; $qtyinzdec = 0; $qtyinzcandue = 0; $qtyinzinit = 0; $qtyinzcanc = 0; $yearcomplete = date('Y'); $yearfirstdigit = substr($yearcomplete, 0,1); $year2digit = date('y'); echo "<div style='width: 800px; text-align: left;'>"; echo "<form method='GET'>"; echo "<table style='font-family: arial; font-size: 12px;'>"; echo "<tr>"; echo "<td>"; echo "<div class='divsupplierselect'>"; echo "&nbsp; Purchase Order (P.O): &nbsp;";
  • 3. echo "<input type='text' class='aorpodti' value='DTI' disabled='disable'/> - "; echo "<select name='poselect' class='dateselect'>"; ?> <option value="" class="aor"><?php if($poselect != NULL){ echo $poselect; }?></option> <?php @$sqlduration = "SELECT DISTINCT(order_information.po) as podist FROM order_information WHERE order_information.po IS NOT NULL AND order_information.po != 'DTI-$poselect' ORDER BY order_information.po"; $queryduration = mysql_query($sqlduration); $countduration = mysql_num_rows($queryduration); for($x=0;$x<$countduration;$x++){ $dataduration = mysql_fetch_array($queryduration); $bypo = $dataduration['podist']; $restbypo = substr($bypo, 4); echo "<option value='$restbypo'> $restbypo </option>"; } echo "</select>"; echo "</div>"; echo "</td>"; echo "<td>"; echo "&nbsp;&nbsp;&nbsp;"; echo "</td>"; echo "<td>"; echo "<input type='submit' value='Load' name='submiteditpo' class='reportsubmit'/>"; echo "<input type='hidden' value='3' name='profile'/>"; echo "</td>";
  • 4. echo "</tr>"; echo "</table>"; echo "</form>"; echo "</div>"; echo "<br/>"; if(isset($submiteditpo) && ($poselect != NULL)){ echo "<table border='0' cellpadding='0' cellspacing='5' style='width: 800px;'>"; @$sqlduration = "SELECT DISTINCT(order_information.supplier_id) as company, supplier_information.* FROM order_information LEFT JOIN supplier_information ON supplier_information.supplier_id = order_information.supplier_id WHERE order_information.po='DTI-$poselect'"; $queryduration = mysql_query($sqlduration); $countduration = mysql_num_rows($queryduration); echo "<tr>"; echo "<td colspan='5' style='font-weight: bold; color: #d5a500;'>"; echo "DTI-".$poselect; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='5'>"; echo "&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td class='bypogold'>"; echo "SUPPLIER: "; echo "</td>"; echo "<td class='bypowhite'>"; for($x=0;$x<$countduration;$x++){ $dataduration = mysql_fetch_array($queryduration); $suppbypo = $dataduration['company']; echo $suppbypo; } echo "</td>";
  • 5. echo "</tr>"; @$sqlduration = "SELECT order_information.*, order_duration.* FROM order_information LEFT JOIN order_duration ON order_duration.order_id = order_information.order_id WHERE order_information.po='DTI-$poselect'"; $queryduration = mysql_query($sqlduration); $countduration = mysql_num_rows($queryduration); for($x=0;$x<$countduration;$x++){ $dataduration = mysql_fetch_array($queryduration); $dateorder = $dataduration['date_order']; $datetoreceive = $dataduration['date_of_receiving']; $dateorid = $dataduration['order_id']; } echo "<tr>"; echo "<td class='bypogold'>"; echo "ORDER DATE: "; echo "</td>"; echo "<td class='bypowhite'>"; echo $dateorder; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td class='bypogold'>"; echo "ARRIVAL DATE: "; echo "</td>"; echo "<td class='bypowhite'>"; echo $datetoreceive; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='5'>"; echo "&nbsp;"; echo "</td>"; echo "</tr>";
  • 6. echo "<tr style='font-weight: bold;'>"; echo "<td class='bypodescgoldblack'>"; echo "PRODUCT CODE"; echo "</td>"; echo "<td class='bypodescgoldblack'>"; echo "DESCRIPTION"; echo "</td>"; echo "<td class='bypodescgoldblack'>"; echo "QUANTITY"; echo "</td>"; echo "<td class='bypodescgoldblack'>"; echo "CATEGORY"; echo "</td>"; echo "</tr>"; @$sqlduration = "SELECT order_information.* FROM order_information WHERE order_information.po='DTI-$poselect'"; $queryduration = mysql_query($sqlduration); $countduration = mysql_num_rows($queryduration); for($x=1;$x<=$countduration;$x++){ $dataduration = mysql_fetch_array($queryduration); $ordis = $dataduration['order_id']; $categoryis = $dataduration['category_id']; $statusis = $dataduration['status']; $pcodeis = $dataduration['product_code']; $pnameis = $dataduration['product_name']; $suppidis = $dataduration['supplier_id']; echo "<tr>"; echo "<td class='bypowhite'>"; echo $pcodeis; echo "</td>"; echo "<td class='bypowhite'>"; echo $pnameis; echo "</td>"; @$sqlqtyin = "SELECT order_quantity_in.* FROM order_quantity_in
  • 7. WHERE order_quantity_in.order_id='".$ordis."'"; $queryqtyin = mysql_query($sqlqtyin); $countqtyin = mysql_num_rows($queryqtyin); for($q=0;$q<$countqtyin;$q++){ $dataqtyin = mysql_fetch_array($queryqtyin); $qtyin = $dataqtyin['quantity_in']; echo "<td style='text-align: right; color: white; font-size: 13px;'>"; echo $qtyin; echo "&nbsp;&nbsp;&nbsp;&nbsp;"; echo "</td>"; $qtyinz = $qtyinz + $qtyin; } @$sqlcategis = "SELECT order_category.* FROM order_category WHERE order_category.category_id='".$categoryis."'"; $querycategis = mysql_query($sqlcategis); $countcategis= mysql_num_rows($querycategis); for($c=0;$c<$countcategis;$c++){ $datacategis = mysql_fetch_array($querycategis); $categis = $datacategis['category']; echo "<td class='bypowhite'>"; echo $categis; echo "</td>"; } echo "<td style='text-align: right;'>"; if($statusis == "Cancelled"){ echo "<img src='../photos/cancelled.png'/>"; } if($statusis == "CancelledDue"){
  • 8. echo "<img src='../photos/cancelledDue.png'/>"; } if($statusis == "Declared"){ echo "<img src='../photos/declaredgreen.png'/>"; } if($statusis == "Initializing"){ echo "<img src='../photos/ongoing.png'/>"; } echo "</td>"; echo "</tr>"; } @$sqldurationcan = "SELECT order_information.* FROM order_information WHERE order_information.po='DTI- $poselect' AND order_information.status='Initializing'"; $querydurationcan = mysql_query($sqldurationcan); $countdurationcan = mysql_num_rows($querydurationcan); for($xcan=1;$xcan<=$countdurationcan;$xcan++){ $dataduration = mysql_fetch_array($querydurationcan); } @$sqlqtyindec = "SELECT order_quantity_in.*, order_information.* FROM order_quantity_in LEFT JOIN order_information ON order_information.order_id = order_quantity_in.order_id WHERE order_information.po='DTI-$poselect' AND order_information.status='declared'"; $queryqtyindec = mysql_query($sqlqtyindec); $countqtyindec = mysql_num_rows($queryqtyindec); for($qdec=0;$qdec<$countqtyindec;$qdec++){ $dataqtyindec = mysql_fetch_array($queryqtyindec); $qtyindec = $dataqtyindec['quantity_in']; $qtyinzdec = $qtyinzdec + $qtyindec + 0; }
  • 9. @$sqlqtyincandue = "SELECT order_quantity_in.*, order_information.* FROM order_quantity_in LEFT JOIN order_information ON order_information.order_id = order_quantity_in.order_id WHERE order_information.po='DTI-$poselect' AND order_information.status='cancelleddue'"; $queryqtyincandue = mysql_query($sqlqtyincandue); $countqtyincandue = mysql_num_rows($queryqtyincandue); for($qcandue=0;$qcandue<$countqtyincandue;$qcandue++){ $dataqtyincandue = mysql_fetch_array($queryqtyincandue); $qtyincandue = $dataqtyincandue['quantity_in']; $qtyinzcandue = $qtyinzcandue + $qtyincandue + 0; } @$sqlqtyininit = "SELECT order_quantity_in.*, order_information.* FROM order_quantity_in LEFT JOIN order_information ON order_information.order_id = order_quantity_in.order_id WHERE order_information.po='DTI-$poselect' AND order_information.status='initializing'"; $queryqtyininit = mysql_query($sqlqtyininit); $countqtyininit = mysql_num_rows($queryqtyininit); for($qinit=0;$qinit<$countqtyininit;$qinit++){ $dataqtyininit = mysql_fetch_array($queryqtyininit); $qtyininit = $dataqtyininit['quantity_in']; $qtyinzinit = $qtyinzinit + $qtyininit + 0; } @$sqlqtyincanc = "SELECT order_quantity_in.*, order_information.* FROM order_quantity_in LEFT JOIN order_information ON order_information.order_id = order_quantity_in.order_id WHERE order_information.po='DTI-$poselect' AND order_information.status='cancelled'"; $queryqtyincanc = mysql_query($sqlqtyincanc);
  • 10. $countqtyincanc = mysql_num_rows($queryqtyincanc); for($qcanc=0;$qcanc<$countqtyincanc;$qcanc++){ $dataqtyincanc = mysql_fetch_array($queryqtyincanc); $qtyincanc = $dataqtyincanc['quantity_in']; $qtyinzcanc = $qtyinzcanc + $qtyincanc + 0; } echo "<tr>"; echo "<td colspan='5'>"; echo "&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='4' class='bypofinaldesc'>"; echo "TOTAL ORDER:"; echo "</td>"; echo "<td style='text-align: right; font-weight: bold; color: white;'>"; echo $countduration; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='5'>"; echo "&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='4' class='bypofinaldesc'>"; echo "INITIALIZING:"; echo "</td>"; echo "<td style='text-align: right; color: white;'>"; echo $qtyinzinit; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>";
  • 11. echo "<td colspan='4' class='bypofinaldesc'>"; echo "DECLARED:"; echo "</td>"; echo "<td style='text-align: right; color: white;'>"; echo $qtyinzdec; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='4' class='bypofinaldesc'>"; echo "CANCELLED:"; echo "</td>"; echo "<td style='text-align: right; color: white;'>"; echo $qtyinzcanc; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='4' class='bypofinaldesc'>"; echo "CANCELLED DUE:"; echo "</td>"; echo "<td style='text-align: right; color: white;'>"; echo $qtyinzcandue; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan='4' class='bypofinaldesc'>"; echo "TOTAL QUANTITY:"; echo "</td>"; echo "<td style='text-align: right; font-weight: bold; color: white;'>"; echo $qtyinz; echo "&nbsp;&nbsp;"; echo "</td>"; echo "</tr>"; echo "</table>"; } ?>