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

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
Fabien Potencier
 
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
 
Separation of concerns - DPC12
Separation of concerns - DPC12Separation of concerns - DPC12
Separation of concerns - DPC12
Stephan 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 security
Jason 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

SOBERBIO DALI
SOBERBIO DALISOBERBIO DALI
SOBERBIO DALI
Jorge 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 Vasquez
Evelio Vasquez
 

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 Php
JH Lee
 
Propel sfugmd
Propel sfugmdPropel sfugmd
Propel sfugmd
iKlaus
 
Ex[1].3 php db connectivity
Ex[1].3 php db connectivityEx[1].3 php db connectivity
Ex[1].3 php db connectivity
Mouli Chandira
 
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
Masahiro Nagano
 

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

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+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...
?#DUbAI#??##{{(☎+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
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
 
+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...
 
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
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
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
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 

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>"; } ?>