Link to home
Start Free TrialLog in
Avatar of rgb192
rgb192Flag for United States of America

asked on

put together

these two files work alone

but I have to add to complex content management system
and it is not working


is there a way to make it into one file

or  take out the head and body of file.php
file.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="javascript">
        function postIt() {
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.forms[0].topost.value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
                     document.forms[0].date1.value = xmlhttp.responseText;
                }
        }
</script>
</head>
<body>
<form>
<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />
</form>
</body>
</html>



page_to_post_it.php
<?php
   $variable1='03/01/2010';
   if (isset($_GET['date1']))
   {
      $variable1 = $_GET['date1'];
   }
   echo $variable1;
?>

Open in new window

Avatar of leakim971
leakim971
Flag of Guadeloupe image

You can't because the ajax function (page_to_post_it.php) MUST echo ONLY a value for date1.
So you can flush the HTML content
Avatar of rgb192

ASKER

>>So you can flush the HTML content

what does this mean
Sorry I want to say : So you CAN'T flush the HTML content = send the page to the browser
Avatar of rgb192

ASKER

i deleted the <head> and <body>

to make file.php one part


but it wont work on my content management system

did I delete too much


also is there another way to do a post without actually using a php post
because cms wont let me redirect and come back

inline pages maybe??
<script language="javascript">
        function postIt() {
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.forms[0].topost.value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
                     document.forms[0].date1.value = xmlhttp.responseText;
                }
        }
</script>
<form>
<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />
</form>

Open in new window

Yes, you have the code here : Ajax

But ajax work with two page : a page which do the request and a page that execute the request and echo a result

The bade news with ajax is both page MUST be on the same domain else you need to use a proxy (php pag for example) to do the request for you.

>did I delete too much

If you embed the code in another page with NO other form no. Else remove (ID:28506201) line 11 and line 14 and replace line 4 by :

xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
Avatar of rgb192

ASKER

tried it

yes my page has multiple forms


should delete other <form></form> tags
>should delete other <form></form> tags

yes and replace line 4 by :

xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
Avatar of rgb192

ASKER

discovered if I run file.php alone

this is the minimum I need

if I delete <form></form> it wont work
<script language="javascript">
        function postIt() {
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
                     document.forms[0].date1.value = xmlhttp.responseText;
                }
        }
</script>
<form>
<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />
</form>

Open in new window

Avatar of rgb192

ASKER


this is the 'view source' of the cms
the form you added is on line 202-205
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>Search for order</title>

  <!-- BluePrint Framework CSS -->
  <link rel="stylesheet" href="css/orange/screen.css" type="text/css" media="screen, projection">
  <link rel="stylesheet" href="css/orange/print.css" type="text/css" media="print">

  <!--[if lt IE 7]>
    <link rel="stylesheet" href="css/orange/lib/ie.css" type="text/css" media="screen, projection">
  <![endif]-->

    <script type="text/javascript" src="inc/js/jquery/jquery-1.2.2.js"></script>
        
        <!-- ThickBox -->
        <script type="text/javascript" src="inc/js/jquery/thickbox-compressed.js"></script>
        <link rel="stylesheet" href="inc/js/jquery/thickbox.css" type="text/css" media="screen" />

        <!-- In Place Editor -->
        <script type="text/javascript" src="inc/js/jquery/jquery.inplace.new.js"></script>
        
        <!-- Table Sorter v2.0.3 http://tablesorter.com/docs/ -->

        <script type="text/javascript" src="inc/js/jquery/jquery.tablesorter.min.js"></script>
        
        
        <!-- Jquery Coda-Slider 1.1.1 http://www.ndoherty.com/blog/2007/11/28/a-quick-update-to-coda-slider-unique-classes-for-navigation-tabs/  -->
        <script src="inc/js/jquery/jquery-easing.1.2.pack.js" type="text/javascript"></script>
        <script src="inc/js/jquery/jquery-easing-compatibility.1.2.pack.js" type="text/javascript"></script>
        <script src="inc/js/jquery/coda-slider.1.1.1.js" type="text/javascript"></script>
        <link rel="stylesheet" href="inc/js/jquery/codaslider.css" type="text/css" media="screen" />

        <!-- Date Picker -->        
        <style type="text/css">@import url(inc/js/jquery/ui.datepicker.css);</style> 
        <script type="text/javascript" src="inc/js/jquery/ui.datepicker.js"></script>
        
        
          <!--jk date picker-->
        
        <!-- jquery.datePicker.js -->
    <script type="text/javascript" 

src="http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/scripts/jquery.datePicker.js

"></script>
        
        <!-- datePicker required styles -->

    <link rel="stylesheet" type="text/css" media="screen" 

href="http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/styles/datePicker.css">

            
        <!-- page specific scripts -->
    <script type="text/javascript" charset="utf-8">
            $(function()
            {
        $('.date-pick').datePicker({startDate:'01/01/1996'});
            });
    </script>             
        
        
        
        
        
        
  </head>
    <body><div id="header">
      <ul>
        <li id="current"><a href="index.php">Home</a></li>
        <li><a href="createorder.php">Create Order</a></li>
        <li><a href="order.php">Orders</a></li>

        <li><a href="products.php">Products</a></li>
        <li><a href="packages.php">Packages</a></li>
        <li><a href="tools.php">Tools</a></li>
        <li><a href="inventories5.php?a=manageinventoryfolders5">Inventory</a></li>
        <li><a href="history.php">Reports</a></li>
      </ul>

      <div id="searchbar">
        <form method="GET" action="order.php">
          <select name="a"  id="a"><option value="searchbyamazonid">AmazonOrderID</option><option value="searchbyebayuserid">EbayUserID</option><option value="searchbyorderid">OrderID</option><option value="searchbyitemnumber">Item Number</option><option value="searchbyname">Name</option><option value="searchbyemail">E-mail</option><option value="searchbyzipcode">Zip Code</option></select>
          <input type="text" name="txt" value="" id="txt" style="border:1px solid #cccccc;">
          <input type="image" src="css/orange/search.gif">

        </form>
      </div>
    </div>
    <div class="OMcontainer">
      <div class="login">
        
        <table style="border:0;">
          <td>March 25th, 2010 11:17 AM| <a href="login.php?logout">Logout</a>&nbsp;&nbsp;</td>

        </tr>
        </table>
        <div class="clear"></div>
      </div>      
    
      <form action="order.php">
      <select name="statusid"><option value ="300">Step 0 - Amazon Import</option><option value ="10" SELECTED>Step 0 - eBay Imported</option><option value ="280">Step 0 - FBA</option><option value ="290">Step 0 - FBM</option><option value ="180">Step 0 - New Order</option><option value ="230">Step 0 - New Web Order</option><option value ="9">Step 0 - Not in Stock</option><option value ="30">Step 0 - On Hold</option><option value ="20">Step 0 - PriceQuote</option><option value ="260">Step 1 - Credit Card Billed</option><option value ="270">Step 1 - Credit Card Declined</option><option value ="40">Step 1 - Credit Card Processing</option><option value ="70">Step 1 - Google Checkout Processing</option><option value ="170">Step 1 - Multiple Processing</option><option value ="160">Step 1 - PayPal eCheck Processing</option><option value ="60">Step 1 - PayPal Int</option><option value ="50">Step 1 - PayPal Processing</option><option value ="200">Step 1 - Wire or Check Processing</option><option value ="80">Step 2 - Order Verification</option><option value ="90">Step 3 - Sent to warehouse</option><option value ="100">Step 3 - Shipping Backorder</option><option value ="220">Step 4 - Pickup</option><option value ="110">Step 4 - Shipped</option><option value ="150">Step 5 - Archive Completed</option><option value ="210">Step 5 - Archive Duplicate</option><option value ="240">Step 5 - Old Order(No Status)</option><option value ="130">Step 7 - Cancelled</option><option value ="140">Step 7 - Cancelled eBay Refund</option><option value ="120">Step 7 - CS Follow up</option><option value ="250">Step 8 - Testing</option></select>

      <input type="image" value="" src="css/orange/view.jpg">
      <input type="hidden" name="a" value="vieworders">
      <a href="assignorders.php">Assign Orders</a>
      </form>
      <br>
                <div class="selectarea"><b>Select: </b>&nbsp;&nbsp;<a href="#" id="selectall">All</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#" id="selectnone">None</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#" id="selectcleared">Cleared</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#" id="selectuncleared">Uncleared</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#" id="selectunderforty">Under $40</a>&nbsp;&nbsp;|&nbsp;&nbsp;93 Orders</div>

                <form action="order.php" method="POST" target="new">
                <input type="hidden" name="a" value="bulkprocess">
                <input type="hidden" name="currentstatus" value="10">
                <div class="roundedbox datatable">
                    <table style="width:100%" id="orderstable">
                        <thead><th width="10">&nbsp;</th><th>OrderID</th><th>Type</th><th>Age</th><th>Availability</th><th>Salesman</th><th>Item</th><th>Last Name</th><th>Email</th><th>User ID</th><th>Item Number</th><th>Company</th><th>Total</th><th>Payments</th><th>Settled</th></thead>

                        <tbody>
                        <tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002201"></td><td><a href="order.php?orderid=7002201">7002201</a></td><td>E</td><td>0</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506167755&nbsp;</td><td>& N Graphic Designs&nbsp;</td><td>neilrelssert@btinternet.com&nbsp;</td><td>shogunk9&nbsp;</td><td>110506167755&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 278.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002197"></td><td><a href="order.php?orderid=7002197">7002197</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415289039&nbsp;</td><td>hartog&nbsp;</td><td>beccahartog@hotmail.com&nbsp;</td><td>7398rebecca&nbsp;</td><td>160415289039&nbsp;</td><td>photodirect&nbsp;</td><td>$ 349.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002196"></td><td><a href="order.php?orderid=7002196">7002196</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415575295&nbsp;</td><td>Siamplidis&nbsp;</td><td>siabargain@gmail.com&nbsp;</td><td>siamarket&nbsp;</td><td>160415575295&nbsp;</td><td>photodirect&nbsp;</td><td>$ 707.95&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002195"></td><td><a href="order.php?orderid=7002195">7002195</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461977806&nbsp;</td><td>Carr&nbsp;</td><td>likeatrainwreck@gmail.com&nbsp;</td><td>ominous_mr_tiddles&nbsp;</td><td>170461977806&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002194"></td><td><a href="order.php?orderid=7002194">7002194</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461865723&nbsp;</td><td>Ross&nbsp;</td><td>james.ross@aes.ukf.net&nbsp;</td><td>jamesdotross&nbsp;</td><td>170461865723&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 278.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002193"></td><td><a href="order.php?orderid=7002193">7002193</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170458309004&nbsp;</td><td>Richardson&nbsp;</td><td>iansrichardson@hotmail.com&nbsp;</td><td>cpair987&nbsp;</td><td>170458309004&nbsp;</td><td>photodirect&nbsp;</td><td>$ 192.00&nbsp;</td><td>$ 192.00&nbsp;</td><td>$ 192.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7002192"></td><td><a href="order.php?orderid=7002192">7002192</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461700438&nbsp;</td><td>ONeill&nbsp;</td><td>peter.oneill@univ.ox.ac.uk&nbsp;</td><td>nlips&nbsp;</td><td>170461700438&nbsp;</td><td>photodirect&nbsp;</td><td>$ 274.00&nbsp;</td><td>$ 274.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002191"></td><td><a href="order.php?orderid=7002191">7002191</a></td><td>E</td><td>0</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160415400396&nbsp;</td><td>Taylor&nbsp;</td><td>stevet5705@yahoo.co.uk&nbsp;</td><td>paradise7000&nbsp;</td><td>160415400396&nbsp;</td><td>photodirect&nbsp;</td><td>$ 279.95&nbsp;</td><td>$ 279.95&nbsp;</td><td>$ 279.95&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002190"></td><td><a href="order.php?orderid=7002190">7002190</a></td><td>E</td><td>0</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>110509398429&nbsp;</td><td>Coulson&nbsp;</td><td>darren.coulson@virgin.net&nbsp;</td><td>darren801&nbsp;</td><td>110509398429&nbsp;</td><td>photodirect&nbsp;</td><td>$ 238.00&nbsp;</td><td>$ 238.00&nbsp;</td><td>$ 238.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002189"></td><td><a href="order.php?orderid=7002189">7002189</a></td><td>E</td><td>1</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461861400&nbsp;</td><td>Ming Chia&nbsp;</td><td>ckm78@hotmail.com&nbsp;</td><td>ckm78&nbsp;</td><td>170461861400&nbsp;</td><td>photodirect&nbsp;</td><td>$ 299.00&nbsp;</td><td>$ 299.00&nbsp;</td><td>$ 299.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002188"></td><td><a href="order.php?orderid=7002188">7002188</a></td><td>E</td><td>1</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415398921&nbsp;</td><td>lin&nbsp;</td><td>shootingstar7742@hotmail.com&nbsp;</td><td>a.z.117&nbsp;</td><td>160415398921&nbsp;</td><td>photodirect&nbsp;</td><td>$ 238.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002187"></td><td><a href="order.php?orderid=7002187">7002187</a></td><td>E</td><td>1</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160410137582&nbsp;</td><td>chhantyal&nbsp;</td><td>linkz_2_rozan@hotmail.co.uk&nbsp;</td><td>chhantyalross&nbsp;</td><td>160410137582&nbsp;</td><td>photodirect&nbsp;</td><td>$ 209.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7002178"></td><td><a href="order.php?orderid=7002178">7002178</a></td><td>E</td><td>1</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160415541930&nbsp;</td><td>Hitge&nbsp;</td><td>ihitge@gmail.com&nbsp;</td><td>ihitge&nbsp;</td><td>160415541930&nbsp;</td><td>photodirect&nbsp;</td><td>$ 158.00&nbsp;</td><td>$ 158.00&nbsp;</td><td>$ 158.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002172"></td><td><a href="order.php?orderid=7002172">7002172</a></td><td>E</td><td>1</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160415174604&nbsp;</td><td>harding&nbsp;</td><td>bethh888@googlemail.com&nbsp;</td><td>bethh8823&nbsp;</td><td>160415174604&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,644.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7002163"></td><td><a href="order.php?orderid=7002163">7002163</a></td><td>E</td><td>1</td><td>&nbsp;</td><td>&nbsp;</td><td>110510860080&nbsp;</td><td>Clayton&nbsp;</td><td>tjsclayton@gmail.com&nbsp;</td><td>teeceethree&nbsp;</td><td>110510860080&nbsp;</td><td>photodirect&nbsp;</td><td>$ 839.00&nbsp;</td><td>$ 839.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7002143"></td><td><a href="order.php?orderid=7002143">7002143</a></td><td>E</td><td>2</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461375841&nbsp;</td><td>Svilas&nbsp;</td><td>aurelijussvilas@yahoo.com&nbsp;</td><td>auris_sw&nbsp;</td><td>170461375841&nbsp;</td><td>photodirect&nbsp;</td><td>$ 378.00&nbsp;</td><td>$ 378.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002125"></td><td><a href="order.php?orderid=7002125">7002125</a></td><td>E</td><td>2</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110509397297&nbsp;</td><td>Dennehy Jnr&nbsp;</td><td>jenniferoleary15@hotmail.com&nbsp;</td><td>e.j.finner&nbsp;</td><td>110509397297&nbsp;</td><td>photodirect&nbsp;</td><td>$ 104.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002122"></td><td><a href="order.php?orderid=7002122">7002122</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>2</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>110509420518&nbsp;</td><td>evans&nbsp;</td><td>arievans86@hotmail.com&nbsp;</td><td>deva5568&nbsp;</td><td>110509420518&nbsp;</td><td>photodirect&nbsp;</td><td>$ 189.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002115"></td><td><a href="order.php?orderid=7002115">7002115</a></td><td>E</td><td>2</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110509070669&nbsp;</td><td>Zakrzewski&nbsp;</td><td>silviasilvie@gmail.com&nbsp;</td><td>02076311183&nbsp;</td><td>110509070669&nbsp;</td><td>photodirect&nbsp;</td><td>$ 359.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002110"></td><td><a href="order.php?orderid=7002110">7002110</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>2</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160410125202&nbsp;</td><td>VERCIC&nbsp;</td><td>tana.elektronika@siol.net&nbsp;</td><td>subicprosm.1300&nbsp;</td><td>160410125202&nbsp;</td><td>photodirect&nbsp;</td><td>$ 238.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002109"></td><td><a href="order.php?orderid=7002109">7002109</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>2</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>110498982575&nbsp;</td><td>Viviers&nbsp;</td><td>faviviers@bigfoot.com&nbsp;</td><td>francoisviviers&nbsp;</td><td>110498982575&nbsp;</td><td>photodirect&nbsp;</td><td>$ 79.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002105"></td><td><a href="order.php?orderid=7002105">7002105</a></td><td>E</td><td>2</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170454245443&nbsp;</td><td>Holts&nbsp;</td><td>thelittlegirlwiththebigbum@yahoo.co.uk&nbsp;</td><td>thegirlwiththebigbum&nbsp;</td><td>170454245443&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,648.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002095"></td><td><a href="order.php?orderid=7002095">7002095</a></td><td>E</td><td>3</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>110509432194&nbsp;</td><td>cerqueira&nbsp;</td><td>kirrin27@hotmail.com&nbsp;</td><td>elhombrerata&nbsp;</td><td>110509432194&nbsp;</td><td>photodirect&nbsp;</td><td>$ 299.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7002092"></td><td><a href="order.php?orderid=7002092">7002092</a></td><td>E</td><td>3</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110509223664&nbsp;</td><td>Warrender&nbsp;</td><td>info@pcs-ltd.biz&nbsp;</td><td>mwarrender&nbsp;</td><td>110509223664&nbsp;</td><td>photodirect&nbsp;</td><td>$ 234.00&nbsp;</td><td>$ 234.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002062"></td><td><a href="order.php?orderid=7002062">7002062</a></td><td>E</td><td>3</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170461273533&nbsp;</td><td>Kretschmer&nbsp;</td><td>hans.kretschmer@web.de&nbsp;</td><td>zettelsdream&nbsp;</td><td>170461273533&nbsp;</td><td>photodirect&nbsp;</td><td>$ 270.00&nbsp;</td><td>$ 279.95&nbsp;</td><td>$ 279.95&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002044"></td><td><a href="order.php?orderid=7002044">7002044</a></td><td>E</td><td>4</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415138443&nbsp;</td><td>Alves da SIlva&nbsp;</td><td>polycord@gmail.com&nbsp;</td><td>kikojiugb&nbsp;</td><td>160415138443&nbsp;</td><td>photodirect&nbsp;</td><td>$ 84.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7002043"></td><td><a href="order.php?orderid=7002043">7002043</a></td><td>E</td><td>4</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110509423353&nbsp;</td><td> granger&nbsp;</td><td>email4ets@yahoo.co.uk&nbsp;</td><td>kababfrency&nbsp;</td><td>110509423353&nbsp;</td><td>photodirect&nbsp;</td><td>$ 379.00&nbsp;</td><td>$ 379.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002026"></td><td><a href="order.php?orderid=7002026">7002026</a></td><td>E</td><td>4</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415415827&nbsp;</td><td>Verkauskas&nbsp;</td><td>neskaitau@hotmail.com&nbsp;</td><td>me2320077&nbsp;</td><td>160415415827&nbsp;</td><td>photodirect&nbsp;</td><td>$ 265.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002016"></td><td><a href="order.php?orderid=7002016">7002016</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>5</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160415529040&nbsp;</td><td>Yore&nbsp;</td><td>martinyore@vodafone.ie&nbsp;</td><td>2blakely&nbsp;</td><td>160415529040&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,078.98&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7002015"></td><td><a href="order.php?orderid=7002015">7002015</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>5</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160415289018&nbsp;</td><td>Yore&nbsp;</td><td>martinyore@vodafone.ie&nbsp;</td><td>2blakely&nbsp;</td><td>160415289018&nbsp;</td><td>photodirect&nbsp;</td><td>$ 152.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7001997"></td><td><a href="order.php?orderid=7001997">7001997</a></td><td>E</td><td>5</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170461696378&nbsp;</td><td>Kahler&nbsp;</td><td>skahler@live.co.uk&nbsp;</td><td>kahler-54&nbsp;</td><td>170461696378&nbsp;</td><td>photodirect&nbsp;</td><td>$ 359.00&nbsp;</td><td>$ 359.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001983"></td><td><a href="order.php?orderid=7001983">7001983</a></td><td>E</td><td>6</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>160410125202&nbsp;</td><td>JASKULA&nbsp;</td><td>ozz5555@gmail.com&nbsp;</td><td>raf5raf&nbsp;</td><td>160410125202&nbsp;</td><td>photodirect&nbsp;</td><td>$ 238.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001982"></td><td><a href="order.php?orderid=7001982">7001982</a></td><td>E</td><td>6</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110496766011&nbsp;</td><td>quraish&nbsp;</td><td>sad-angel_14@hotmail.com&nbsp;</td><td>hassan.quraish&nbsp;</td><td>110496766011&nbsp;</td><td>photodirect&nbsp;</td><td>$ 549.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7001967"></td><td><a href="order.php?orderid=7001967">7001967</a></td><td>E</td><td>6</td><td>NOT IN STOCK&nbsp;</td><td>&nbsp;</td><td>170450614464&nbsp;</td><td>israelit&nbsp;</td><td>micha@israelite.co.uk&nbsp;</td><td>israelit12&nbsp;</td><td>170450614464&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,314.00&nbsp;</td><td>$ 1,314.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001965"></td><td><a href="order.php?orderid=7001965">7001965</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>6</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458743097&nbsp;</td><td>joy&nbsp;</td><td>andrewpeterjoy@aol.com&nbsp;</td><td>andrew.joy&nbsp;</td><td>170458743097&nbsp;</td><td>photodirect&nbsp;</td><td>$ 707.95&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001957"></td><td><a href="order.php?orderid=7001957">7001957</a></td><td>E</td><td>7</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160413343982&nbsp;</td><td>Hatter&nbsp;</td><td>steven.hatter@gmail.com&nbsp;</td><td>irish_madhatter&nbsp;</td><td>160413343982&nbsp;</td><td>photodirect&nbsp;</td><td>$ 311.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001936"></td><td><a href="order.php?orderid=7001936">7001936</a></td><td>E</td><td>7</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506412708&nbsp;</td><td>shanker kakaraparthi&nbsp;</td><td>ravi_kakaraparthi@yahoo.co.in&nbsp;</td><td>ravikakaraparthi2009&nbsp;</td><td>110506412708&nbsp;</td><td>photodirect&nbsp;</td><td>$ 399.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001918"></td><td><a href="order.php?orderid=7001918">7001918</a></td><td>E</td><td>8</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506150826&nbsp;</td><td>viva&nbsp;</td><td>margarete_viva@hotmail.com&nbsp;</td><td>cassio_2008&nbsp;</td><td>110506150826&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001890"></td><td><a href="order.php?orderid=7001890">7001890</a></td><td>E</td><td>8</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160412873891&nbsp;</td><td>svensson&nbsp;</td><td>svenssons@bostream.nu&nbsp;</td><td>kiotseridis&nbsp;</td><td>160412873891&nbsp;</td><td>photodirect&nbsp;</td><td>$ 375.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001884"></td><td><a href="order.php?orderid=7001884">7001884</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>8</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458316544&nbsp;</td><td>Vandepitte&nbsp;</td><td>matthias.vandepitte@gmail.com&nbsp;</td><td>matthiasvandepitte&nbsp;</td><td>170458316544&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,089.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001842"></td><td><a href="order.php?orderid=7001842">7001842</a></td><td>E</td><td>9</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506368394&nbsp;</td><td>Jasarevic&nbsp;</td><td>denis.jasarevic@gmail.com&nbsp;</td><td>teslaworld&nbsp;</td><td>110506368394&nbsp;</td><td>photodirect&nbsp;</td><td>$ 189.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001819"></td><td><a href="order.php?orderid=7001819">7001819</a></td><td>E</td><td>10</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110496766011&nbsp;</td><td>Thoma&nbsp;</td><td>thomasonnenschutz@t-online.de&nbsp;</td><td>pantaboy&nbsp;</td><td>110496766011&nbsp;</td><td>photodirect&nbsp;</td><td>$ 549.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001804"></td><td><a href="order.php?orderid=7001804">7001804</a></td><td>E</td><td>10</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160412976625&nbsp;</td><td>David WONG DA SILVA&nbsp;</td><td>cosmopolitano-ld@hotmail.fr&nbsp;</td><td>drumgray84&nbsp;</td><td>160412976625&nbsp;</td><td>photodirect&nbsp;</td><td>$ 193.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001775"></td><td><a href="order.php?orderid=7001775">7001775</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160412808342&nbsp;</td><td>Bruzzaniti&nbsp;</td><td>gius.bruz@hotmail.com&nbsp;</td><td>gius.bruz&nbsp;</td><td>160412808342&nbsp;</td><td>photodirect&nbsp;</td><td>$ 359.00&nbsp;</td><td>$ 359.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001759"></td><td><a href="order.php?orderid=7001759">7001759</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458658287&nbsp;</td><td>gregson&nbsp;</td><td>greggie@blueyonder.co.uk&nbsp;</td><td>basterfield&nbsp;</td><td>170458658287&nbsp;</td><td>photodirect&nbsp;</td><td>$ 177.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001750"></td><td><a href="order.php?orderid=7001750">7001750</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170454245443&nbsp;</td><td>Sandor&nbsp;</td><td>danku.sandor@gmail.com&nbsp;</td><td>dankusandor&nbsp;</td><td>170454245443&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,648.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001742"></td><td><a href="order.php?orderid=7001742">7001742</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506370544&nbsp;</td><td>Sandor&nbsp;</td><td>danku.sandor@gmail.com&nbsp;</td><td>dankusandor&nbsp;</td><td>110506370544&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,648.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001740"></td><td><a href="order.php?orderid=7001740">7001740</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458145895&nbsp;</td><td>Sandor&nbsp;</td><td>danku.sandor@gmail.com&nbsp;</td><td>dankusandor&nbsp;</td><td>170458145895&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,648.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001739"></td><td><a href="order.php?orderid=7001739">7001739</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>11</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458565742&nbsp;</td><td>Sandor&nbsp;</td><td>danku.sandor@gmail.com&nbsp;</td><td>dankusandor&nbsp;</td><td>170458565742&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,648.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001727"></td><td><a href="order.php?orderid=7001727">7001727</a></td><td>E</td><td>12</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170458802608&nbsp;</td><td>Orosz&nbsp;</td><td>zs.orosz@gmail.com&nbsp;</td><td>deldongo&nbsp;</td><td>170458802608&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,078.98&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001718"></td><td><a href="order.php?orderid=7001718">7001718</a></td><td>E</td><td>12</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506180463&nbsp;</td><td>Kelly&nbsp;</td><td>ironeoin@hotmail.com&nbsp;</td><td>1168eoin&nbsp;</td><td>110506180463&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,314.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001711"></td><td><a href="order.php?orderid=7001711">7001711</a></td><td>E</td><td>12</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160413156117&nbsp;</td><td>c/o Kerry Wood&nbsp;</td><td>rkidkarl@yahoo.com&nbsp;</td><td>kblack39&nbsp;</td><td>160413156117&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,274.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001684"></td><td><a href="order.php?orderid=7001684">7001684</a></td><td>E</td><td>13</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110506061557&nbsp;</td><td>Berhagen&nbsp;</td><td>frankform@bredband.net&nbsp;</td><td>jonte1974&nbsp;</td><td>110506061557&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001673"></td><td><a href="order.php?orderid=7001673">7001673</a></td><td>E</td><td>13</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170454237879&nbsp;</td><td>Neri&nbsp;</td><td>piccia.neri@googlemail.com&nbsp;</td><td>nectarina2005&nbsp;</td><td>170454237879&nbsp;</td><td>photodirect&nbsp;</td><td>$ 754.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001641"></td><td><a href="order.php?orderid=7001641">7001641</a></td><td>E</td><td>14</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160404716292&nbsp;</td><td>Strugalski&nbsp;</td><td>rad88@go2.pl&nbsp;</td><td>strradek&nbsp;</td><td>160404716292&nbsp;</td><td>photodirect&nbsp;</td><td>$ 752.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001637"></td><td><a href="order.php?orderid=7001637">7001637</a></td><td>E</td><td>15</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170446547732&nbsp;</td><td>Olim Vieira&nbsp;</td><td>steev@netmadeira.com&nbsp;</td><td>c2lagartixa&nbsp;</td><td>170446547732&nbsp;</td><td>photodirect&nbsp;</td><td>$ 518.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#ecfeec;color:#006600;" class="cleared"><td><input type="checkbox" name="orders[]" value="7001608"></td><td><a href="order.php?orderid=7001608">7001608</a></td><td>E</td><td>15</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160411125075&nbsp;</td><td>Downing&nbsp;</td><td>downing.aj@gmail.com&nbsp;</td><td>adowning1947&nbsp;</td><td>160411125075&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,644.00&nbsp;</td><td>$ 1,644.00&nbsp;</td><td>$ 1,644.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001546"></td><td><a href="order.php?orderid=7001546">7001546</a></td><td>E</td><td>17</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160406099011&nbsp;</td><td>Bankovskis&nbsp;</td><td>aleksejs.bankovskis@inbox.lv&nbsp;</td><td>lolita1973_2008&nbsp;</td><td>160406099011&nbsp;</td><td>photodirect&nbsp;</td><td>$ 408.99&nbsp;</td><td>$ 379.00&nbsp;</td><td>$ 379.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001521"></td><td><a href="order.php?orderid=7001521">7001521</a></td><td>E</td><td>18</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170455911164&nbsp;</td><td>bober&nbsp;</td><td>beabober@yahoo.es&nbsp;</td><td>beatkabea&nbsp;</td><td>170455911164&nbsp;</td><td>photodirect&nbsp;</td><td>$ 177.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001518"></td><td><a href="order.php?orderid=7001518">7001518</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>18</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110496766011&nbsp;</td><td>Karbassi&nbsp;</td><td>kamran_karbassi@yahoo.com&nbsp;</td><td>kamrankarbassi&nbsp;</td><td>110496766011&nbsp;</td><td>photodirect&nbsp;</td><td>$ 549.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001497"></td><td><a href="order.php?orderid=7001497">7001497</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>18</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160410236533&nbsp;</td><td>carr&nbsp;</td><td>izgoy@live.com&nbsp;</td><td>wittizgoy&nbsp;</td><td>160410236533&nbsp;</td><td>photodirect&nbsp;</td><td>$ 295.95&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001451"></td><td><a href="order.php?orderid=7001451">7001451</a></td><td>E</td><td>20</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160410253777&nbsp;</td><td>barros fernández&nbsp;</td><td>j_yur@hotmail.com&nbsp;</td><td>j_yur&nbsp;</td><td>160410253777&nbsp;</td><td>photodirect&nbsp;</td><td>$ 298.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001450"></td><td><a href="order.php?orderid=7001450">7001450</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>20</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160410299446&nbsp;</td><td>De-Light&nbsp;</td><td>dominic.delight@ymail.com&nbsp;</td><td>dominicuser111&nbsp;</td><td>160410299446&nbsp;</td><td>photodirect&nbsp;</td><td>$ 707.95&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001429"></td><td><a href="order.php?orderid=7001429">7001429</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>21</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110494924943&nbsp;</td><td>Tikhanskiy&nbsp;</td><td>sasha@tikhanski.com&nbsp;</td><td>tikhanski&nbsp;</td><td>110494924943&nbsp;</td><td>photodirect&nbsp;</td><td>$ 989.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001290"></td><td><a href="order.php?orderid=7001290">7001290</a></td><td>E</td><td>26</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110499663441&nbsp;</td><td>Boffa&nbsp;</td><td>jdboffa@gmail.com&nbsp;</td><td>jeando-2009&nbsp;</td><td>110499663441&nbsp;</td><td>photodirect&nbsp;</td><td>$ 389.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr style="background-color:#E1EEF5;color:#1B3C72;" class="uncleared"><td><input type="checkbox" name="orders[]" value="7001282"></td><td><a href="order.php?orderid=7001282">7001282</a></td><td>E</td><td>26</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170450413101&nbsp;</td><td>Potgieter&nbsp;</td><td>s3110656@student.rmit.edu.au&nbsp;</td><td>tory_00&nbsp;</td><td>170450413101&nbsp;</td><td>photodirect&nbsp;</td><td>$ 297.00&nbsp;</td><td>$ 297.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001270"></td><td><a href="order.php?orderid=7001270">7001270</a></td><td>E</td><td>27</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110499762151&nbsp;</td><td>Dean&nbsp;</td><td>lorina.dean@ntlworld.com&nbsp;</td><td>lorn4321&nbsp;</td><td>110499762151&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,058.98&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001264"></td><td><a href="order.php?orderid=7001264">7001264</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>27</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160408216614&nbsp;</td><td>zarricueta&nbsp;</td><td>zarricuetajaime@hotmail.com&nbsp;</td><td>zarri1960&nbsp;</td><td>160408216614&nbsp;</td><td>photodirect&nbsp;</td><td>$ 499.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001239"></td><td><a href="order.php?orderid=7001239">7001239</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>28</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160406098941&nbsp;</td><td>zarricueta&nbsp;</td><td>zarricuetajaime@hotmail.com&nbsp;</td><td>zarri1960&nbsp;</td><td>160406098941&nbsp;</td><td>photodirect&nbsp;</td><td>$ 274.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001226"></td><td><a href="order.php?orderid=7001226">7001226</a></td><td>E</td><td>28</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160408109832&nbsp;</td><td>Gliaudelis&nbsp;</td><td>arturdzhan@yahoo.co.uk&nbsp;</td><td>arturdzhan20&nbsp;</td><td>160408109832&nbsp;</td><td>photodirect&nbsp;</td><td>$ 357.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001135"></td><td><a href="order.php?orderid=7001135">7001135</a></td><td>E</td><td>31</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160406460858&nbsp;</td><td>Begum&nbsp;</td><td>rosenabegum786@yahoo.co.uk&nbsp;</td><td>rose786-2007&nbsp;</td><td>160406460858&nbsp;</td><td>photodirect&nbsp;</td><td>$ 137.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7001114"></td><td><a href="order.php?orderid=7001114">7001114</a></td><td>E</td><td>31</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170448769130&nbsp;</td><td>chapman&nbsp;</td><td>leahchapman@blueyonder.co.uk&nbsp;</td><td>elsie.a&nbsp;</td><td>170448769130&nbsp;</td><td>photodirect&nbsp;</td><td>$ 418.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000999"></td><td><a href="order.php?orderid=7000999">7000999</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>35</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160403937212&nbsp;</td><td>Legere&nbsp;</td><td>stevelegere@msn.com&nbsp;</td><td>stevesbba&nbsp;</td><td>160403937212&nbsp;</td><td>photodirect&nbsp;</td><td>$ 199.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000991"></td><td><a href="order.php?orderid=7000991">7000991</a></td><td>E</td><td>35</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110493787765&nbsp;</td><td>Borg&nbsp;</td><td>francesco.borg@yahoo.com&nbsp;</td><td>francesc798thereza&nbsp;</td><td>110493787765&nbsp;</td><td>photodirect&nbsp;</td><td>$ 368.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared underforty "><td><input type="checkbox" name="orders[]" value="7000983"></td><td><a href="order.php?orderid=7000983">7000983</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>36</td><td>&nbsp;</td><td>&nbsp;</td><td>170445620053&nbsp;</td><td>bromley&nbsp;</td><td>carly@movingdoors.co.uk&nbsp;</td><td>carlybromley&nbsp;</td><td>170445620053&nbsp;</td><td>photodirect&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000949"></td><td><a href="order.php?orderid=7000949">7000949</a></td><td>E</td><td>37</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110488936422&nbsp;</td><td>Vilimaite&nbsp;</td><td>d_vilimaite@yahoo.co.uk&nbsp;</td><td>donata_wayne&nbsp;</td><td>110488936422&nbsp;</td><td>photodirect&nbsp;</td><td>$ 284.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000926"></td><td><a href="order.php?orderid=7000926">7000926</a></td><td>E</td><td>37</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170444905962&nbsp;</td><td>Slavov&nbsp;</td><td>qsk0o0@gmail.com&nbsp;</td><td>qsk01989&nbsp;</td><td>170444905962&nbsp;</td><td>photodirect&nbsp;</td><td>$ 79.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000886"></td><td><a href="order.php?orderid=7000886">7000886</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>39</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160403919670&nbsp;</td><td>THORIQ JAILANI&nbsp;</td><td>muhdthoriq@gmail.com&nbsp;</td><td>thoriq89&nbsp;</td><td>160403919670&nbsp;</td><td>photodirect&nbsp;</td><td>$ 357.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000840"></td><td><a href="order.php?orderid=7000840">7000840</a></td><td>E</td><td>42</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170444933159&nbsp;</td><td>bosma&nbsp;</td><td>bennobosma@planet.nl&nbsp;</td><td>bennobosma058&nbsp;</td><td>170444933159&nbsp;</td><td>photodirect&nbsp;</td><td>$ 357.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000836"></td><td><a href="order.php?orderid=7000836">7000836</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>42</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110490961619&nbsp;</td><td>Kazazovic&nbsp;</td><td>pedja.kazazovic@gmail.com&nbsp;</td><td>novistarter&nbsp;</td><td>110490961619&nbsp;</td><td>photodirect&nbsp;</td><td>$ 284.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000835"></td><td><a href="order.php?orderid=7000835">7000835</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>42</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160402045791&nbsp;</td><td>Kazazovic&nbsp;</td><td>pedja.kazazovic@gmail.com&nbsp;</td><td>novistarter&nbsp;</td><td>160402045791&nbsp;</td><td>photodirect&nbsp;</td><td>$ 284.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000834"></td><td><a href="order.php?orderid=7000834">7000834</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>42</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110491462072&nbsp;</td><td>Kazazovic&nbsp;</td><td>pedja.kazazovic@gmail.com&nbsp;</td><td>novistarter&nbsp;</td><td>110491462072&nbsp;</td><td>photodirect&nbsp;</td><td>$ 284.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000833"></td><td><a href="order.php?orderid=7000833">7000833</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>42</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170442848288&nbsp;</td><td>Kazazovic&nbsp;</td><td>pedja.kazazovic@gmail.com&nbsp;</td><td>novistarter&nbsp;</td><td>170442848288&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,259.98&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000813"></td><td><a href="order.php?orderid=7000813">7000813</a></td><td>E</td><td>43</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170442708770&nbsp;</td><td>Jegorov&nbsp;</td><td>ak0819670@googlemail.com&nbsp;</td><td>aka0819670&nbsp;</td><td>170442708770&nbsp;</td><td>photodirect&nbsp;</td><td>$ 79.99&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000787"></td><td><a href="order.php?orderid=7000787">7000787</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>44</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110491474853&nbsp;</td><td>islam&nbsp;</td><td>zolsha@yahoo.com&nbsp;</td><td>zolsha075&nbsp;</td><td>110491474853&nbsp;</td><td>photodirect&nbsp;</td><td>$ 369.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000671"></td><td><a href="order.php?orderid=7000671">7000671</a>&nbsp;&nbsp;&nbsp;<b>R</b></td><td>E</td><td>49</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170440050141&nbsp;</td><td>Taylor&nbsp;</td><td>duncantaylor@emedigital.co.uk&nbsp;</td><td>photobox2&nbsp;</td><td>170440050141&nbsp;</td><td>photodirect&nbsp;</td><td>$ 324.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000656"></td><td><a href="order.php?orderid=7000656">7000656</a></td><td>E</td><td>50</td><td>ship&nbsp;</td><td>&nbsp;</td><td>160394582675&nbsp;</td><td>CHRISTOU&nbsp;</td><td>atraktos@cytanet.com.cy&nbsp;</td><td>atraktos2009&nbsp;</td><td>160394582675&nbsp;</td><td>photodirect&nbsp;</td><td>$ 369.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000628"></td><td><a href="order.php?orderid=7000628">7000628</a></td><td>E</td><td>51</td><td>ship&nbsp;</td><td>&nbsp;</td><td>170440468540&nbsp;</td><td>dantas&nbsp;</td><td>turisfoto_2007@hotmail.com&nbsp;</td><td>alexis_42&nbsp;</td><td>170440468540&nbsp;</td><td>photodirect&nbsp;</td><td>$ 278.98&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000536"></td><td><a href="order.php?orderid=7000536">7000536</a></td><td>E</td><td>58</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110486053828&nbsp;</td><td>ford&nbsp;</td><td>jeff@fatwombat.co.uk&nbsp;</td><td>jeffinjamfactory&nbsp;</td><td>110486053828&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,244.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr><tr class="uncleared"><td><input type="checkbox" name="orders[]" value="7000299"></td><td><a href="order.php?orderid=7000299">7000299</a></td><td>E</td><td>72</td><td>ship&nbsp;</td><td>&nbsp;</td><td>110478551901&nbsp;</td><td>Thomson&nbsp;</td><td>richardmthomson@gmail.com&nbsp;</td><td>noaccessrichard&nbsp;</td><td>110478551901&nbsp;</td><td>photodirect&nbsp;</td><td>$ 1,114.00&nbsp;</td><td>$ 0.00&nbsp;</td><td>$ 0.00&nbsp;</td></tr>

          </tbody>
        </table>
        </div>
        <br>
        <input type="hidden" name="changestatus" value="">
        <input type="hidden" name="changestatus2" value="">
        <input type="hidden" name="printorders" value="">
        <input type="image" src="inc/img/print_order.jpg" name="printorders" value="printfull" onClick="this.form.printorders.value='printfull';">
        <input type="image" src="inc/img/print_packingslip.jpg" name="printorders" value="printpacking" onClick="this.form.printorders.value='printpacking';">

        <input type="submit" name="printorders" value="GetCCRefundFile" onClick="this.form.printorders.value='printpacking';">
                <input type="submit" name="printorders" value="ExportDB" onClick="this.form.printorders.value='printpacking';">
                
  
  
  
  
  
                






                
        &nbsp;&nbsp;&nbsp;&nbsp;<select name="statusid"><option value =" "> </option><option value ="300">Step 0 - Amazon Import</option><option value ="10">Step 0 - eBay Imported</option><option value ="280">Step 0 - FBA</option><option value ="290">Step 0 - FBM</option><option value ="180">Step 0 - New Order</option><option value ="230">Step 0 - New Web Order</option><option value ="9">Step 0 - Not in Stock</option><option value ="30">Step 0 - On Hold</option><option value ="20">Step 0 - PriceQuote</option><option value ="260">Step 1 - Credit Card Billed</option><option value ="270">Step 1 - Credit Card Declined</option><option value ="40">Step 1 - Credit Card Processing</option><option value ="70">Step 1 - Google Checkout Processing</option><option value ="170">Step 1 - Multiple Processing</option><option value ="160">Step 1 - PayPal eCheck Processing</option><option value ="60">Step 1 - PayPal Int</option><option value ="50">Step 1 - PayPal Processing</option><option value ="200">Step 1 - Wire or Check Processing</option><option value ="80">Step 2 - Order Verification</option><option value ="90">Step 3 - Sent to warehouse</option><option value ="100">Step 3 - Shipping Backorder</option><option value ="220">Step 4 - Pickup</option><option value ="110">Step 4 - Shipped</option><option value ="150">Step 5 - Archive Completed</option><option value ="210">Step 5 - Archive Duplicate</option><option value ="240">Step 5 - Old Order(No Status)</option><option value ="130">Step 7 - Cancelled</option><option value ="140">Step 7 - Cancelled eBay Refund</option><option value ="120">Step 7 - CS Follow up</option><option value ="250">Step 8 - Testing</option></select>

        &nbsp;&nbsp;<input type="image" src="inc/img/change_status.jpg" name="changestatus" value="changestatus" onClick="this.form.changestatus.value='changestatus';this.form.printorders.value='';this.form.target='';">
        &nbsp;&nbsp;<input type="image" src="inc/img/change_status.jpg" name="changestatus" value="changestatus" onClick="this.form.changestatus.value='changestatus';this.form.printorders.value='';this.form.target='';"><select name="statusid"><option value ="300">Step 0 - Amazon Import</option><option value ="10">Step 0 - eBay Imported</option><option value ="280">Step 0 - FBA</option><option value ="290">Step 0 - FBM</option><option value ="180">Step 0 - New Order</option><option value ="230">Step 0 - New Web Order</option><option value ="9">Step 0 - Not in Stock</option><option value ="30">Step 0 - On Hold</option><option value ="20">Step 0 - PriceQuote</option><option value ="260">Step 1 - Credit Card Billed</option><option value ="270">Step 1 - Credit Card Declined</option><option value ="40">Step 1 - Credit Card Processing</option><option value ="70">Step 1 - Google Checkout Processing</option><option value ="170">Step 1 - Multiple Processing</option><option value ="160">Step 1 - PayPal eCheck Processing</option><option value ="60">Step 1 - PayPal Int</option><option value ="50">Step 1 - PayPal Processing</option><option value ="200">Step 1 - Wire or Check Processing</option><option value ="80">Step 2 - Order Verification</option><option value ="90">Step 3 - Sent to warehouse</option><option value ="100">Step 3 - Shipping Backorder</option><option value ="220">Step 4 - Pickup</option><option value ="110">Step 4 - Shipped</option><option value ="150">Step 5 - Archive Completed</option><option value ="210">Step 5 - Archive Duplicate</option><option value ="240">Step 5 - Old Order(No Status)</option><option value ="130">Step 7 - Cancelled</option><option value ="140">Step 7 - Cancelled eBay Refund</option><option value ="120">Step 7 - CS Follow up</option><option value ="250">Step 8 - Testing</option></select>

                &nbsp;&nbsp;<input type="image" src="inc/img/change_status.jpg" name="changestatus" value="changestatus2" onClick="this.form.changestatus2.value='changestatus2';this.form.printorders.value='';this.form.target='';">
                
                
        <script>
        //Setup Table Sorter
        $(document).ready(function() { 
          $("#orderstable").tablesorter({ 
                  // sort on the first column and third column, order asc 
                  sortList: [[1,1]] 
              });
        
        } );
        //Setup Select All/None/Cleared/Uncleared
        $('#selectall').click(function() {
          $('#orderstable input[@type=checkbox]').attr('checked', 'checked');
          return false;
             });
        $('#selectnone').click(function() {
          $('#orderstable input[@type=checkbox]').removeAttr('checked');
          return false;
             });
        $('#selectcleared').click(function() {
          $('#orderstable tr.uncleared input[@type=checkbox]').removeAttr('checked');
          $('#orderstable tr.cleared input[@type=checkbox]').attr('checked', 'checked');
          return false;
             });
        $('#selectuncleared').click(function() {
          $('#orderstable tr.cleared input[@type=checkbox]').removeAttr('checked');
          $('#orderstable tr.uncleared input[@type=checkbox]').attr('checked', 'checked');
          return false;
             });
        $('#selectunderforty').click(function() {
          $('#orderstable input[@type=checkbox]').removeAttr('checked');
          $('#orderstable tr.underforty input[@type=checkbox]').attr('checked', 'checked');
          return false;
             });
        </script>
          <br><br><br><br><br>    
<script language="javascript">
        function postIt() {
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
                     document.forms[0].date1.value = xmlhttp.responseText;
                }
        }
</script>
<form>
<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />
</form>
    
   
    
    
 </div><!-- End 21 span div --!>
  </div><!-- End container class --!>

  </div><!-- End omcontainer --!>
    <div class="omcontainerfooter"></div>
    <br><br>
    </body>
  </html>

Open in new window

Hello rgb192,

Sorry for the delay.

I see a  form in your source (from view source) but I don't think its our problem here.

Could your replace the code by the following and confirm you get an alert box when you click on the button ?


<script language="javascript">
        function postIt() {
alert("yes you click on the button");
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
alert("yes you get a result :" + xmlhttp.responseText);
                     document.forms[0].date1.value = xmlhttp.responseText;
                }
        }
</script>

<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />

Open in new window

Avatar of rgb192

ASKER

alert box: yes you click on the button
alert box: yes you get a result: f



Webpage error details


Message: 'document.forms.0.date1' is null or not an object
Line: 9
Char: 22
Code: 0


My bad, we need to update this line too (we remove the form) :

replace :
   document.forms[0].date1.value = xmlhttp.responseText;
by:
  document.getElementById("date1").value = xmlhttp.responseText;

So we have :


<script language="javascript">
        function postIt() {
                if(window.XMLHttpRequest) xmlhttp=new XMLHttpRequest(); else xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                xmlhttp.open("GET","page_to_post_it.php?date1="+document.getElementById("topost").value,false);
                xmlhttp.send(null);
                if(xmlhttp.readyState==4) {
                     document.getElementById("date1").value = xmlhttp.responseText;
                }
        }
</script>

<input  type="text" name="topost" value="" />&nbsp;<input type="button" value="Post It" onclick="postIt();" />
<input name="date1" type="text" />

Open in new window

Avatar of rgb192

ASKER

your code works... alone

but not on the cms

I get an error with this line
function postIt() {


Webpage error details

Message: Object required
Line: 179
Char: 17
Code: 0


ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rgb192

ASKER

works in content management system

but
file.php does not know the value of $variableb

https://www.experts-exchange.com/questions/25522257/let-file-php-know-the-value-of-variableb.html?fromWizard=true
Avatar of rgb192

ASKER

thank you very much
You're welcome! Thanks for the points!