Jump to content

mikebyrne

Members
  • Posts

    780
  • Joined

  • Last visited

Everything posted by mikebyrne

  1. My code now looks like this <!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=iso-8859-1" /> <title>e-commerce admin page sample | item</title> <link href="../Admin_files/admin.css" rel="stylesheet" type="text/css" /> <script type="text/JavaScript" src="../Admin_files/wrapper.js"></script> </head> <body> <div id="Box"> <div id="logoBox"><a href="http://www.btrax.com/" target="_blank"><img src="../Admin_files/logo.gif" width="51" height="125" border="0" /></a></div> <div id="contentBox"> <!-- logo start --> <div id="container"> <div class="padTop28"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- logo finish --> <!-- menu start --> <div id="container"> <div id="menu1"> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../order/new.php" class="black">order</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../sales/sales.php" class="black">sales</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_on"><!-- --></div> <div id="menu_text_on"><a href="../item/list.php" class="black_on">item</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../shipping/current.php" class="black">shipping fee</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../coupon/current.php" class="black">coupon</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../news/list.php" class="black">news</a></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop5"><!-- --></div> <div class="clr"><!-- --></div> <div id="dotted"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop5"><!-- --></div> <div class="clr"><!-- --></div> <div id="menu2"> <div id="menu_hide"><!-- --></div> <div id="menu_text_off"> </div> <div id="menu_space1"><!-- --></div> <div class="clr"><!-- --></div> <!-- --> </div> <div id="menu_text_on"><a href="../admin_files/list.php" class="black_on">Games</a></div> <div id="menu_space2"> <!-- --> </div> <div id="menu_text_off"><a href="../admin_files/dvdlist.php" class="black">DVD</a></div> <div id="menu_space2"> <!-- --> </div> <div id="menu_text_off"><a href="../admin_files/cdlist.php" class="black">CD</a></div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> <!-- menu finish --> <!-- top start --> <div id="container"> <div id="line"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- top finish --> <!-- 1px space start --> <div id="containerBg1"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- 1px space finish --> <!-- data top start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data top finish --> <!-- data content start --> <div id="containerBg4"> <!-- data start --> <form method="post" action="edit.php"> <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td> </td> <td><a href="#">serial no.[/url]</td> <td><a href="#">product name[/url]</td> <td>display order</td> <td><a href="#">display[/url]</td> <td><a href="#">pricet[/url]</td> <td> </td> <td>action</td> </tr> <?php while(...){ ?> <tr align="left"> <td><input type="radio" value="ProductNo<?php echo $row['ProductNo']; ?>" name="something" /></td> <td><a class="black"><?php echo $row['ProductNo'];?></a></td> <td><?php echo $row['ProductName'];?></td> <td>Display order results</td> <td><?php echo $row['Display'] ;?></td> <td><?php echo $row['Price'];?></td> <td> </td> <td><input type="submit" name="submit" value="Edit" /></td> </tr> <?php } ?> </table> </div> <div class="clr"><!-- --></div> <!-- data content finish --> <!-- data btm start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data btm finish --> <!-- btm start --> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="container"> <div id="line"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="padTop16"><!-- --></div> <div class="clr"><!-- --></div> <!-- btm finish --> </div> </div> </body> </html> [code] But im getting the error Parse error: syntax error, unexpected '.' in C:\xampp\htdocs\Admin_files\list.php on line 146 line 146 refers to <?php while(...){ ?> [/code]
  2. I'm a little confused as to how I allign the below widths with the php output??? <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="25"> </td> <td width="100"><a href="#">serial no.</a></td> <td width="333"><a href="#">product name</a></td> <td width="95">display order</td> <td width="46"><a href="#">display</a></td> <td width="66"><a href="#">pricet</a></td> <td width="30"> </td> <td width="110">action</td> </tr>
  3. I've inserted a screenshot to show how my table looks now The source code is: <!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=iso-8859-1" /> <title>e-commerce admin page sample | item</title> <link href="../Admin_files/admin.css" rel="stylesheet" type="text/css" /> <script type="text/JavaScript" src="../Admin_files/wrapper.js"></script> </head> <body> <div id="Box"> <div id="logoBox"><a href="http://www.btrax.com/" target="_blank"><img src="../Admin_files/logo.gif" width="51" height="125" border="0" /></a></div> <div id="contentBox"> <!-- logo start --> <div id="container"> <div class="padTop28"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- logo finish --> <!-- menu start --> <div id="container"> <div id="menu1"> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../order/new.php" class="black">order</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../sales/sales.php" class="black">sales</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_on"><!-- --></div> <div id="menu_text_on"><a href="../item/list.php" class="black_on">item</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../shipping/current.php" class="black">shipping fee</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../coupon/current.php" class="black">coupon</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../news/list.php" class="black">news</a></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop5"><!-- --></div> <div class="clr"><!-- --></div> <div id="dotted"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop5"><!-- --></div> <div class="clr"><!-- --></div> <div id="menu2"> <div id="menu_hide"><!-- --></div> <div id="menu_text_off"> </div> <div id="menu_space1"><!-- --></div> <div class="clr"><!-- --></div> <!-- --> </div> <div id="menu_text_on"><a href="../admin_files/list.php" class="black_on">Games</a></div> <div id="menu_space2"> <!-- --> </div> <div id="menu_text_off"><a href="../admin_files/dvdlist.php" class="black">DVD</a></div> <div id="menu_space2"> <!-- --> </div> <div id="menu_text_off"><a href="../admin_files/cdlist.php" class="black">CD</a></div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> <!-- menu finish --> <!-- top start --> <div id="container"> <div id="line"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- top finish --> <!-- data title start --> <div id="containerBg2"> <div class="padTop2"><!-- --></div> <div class="clr"><!-- --></div> <div class="titleBox"> <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="25"> </td> <td width="100"><a href="#">serial no.</a></td> <td width="333"><a href="#">product name</a></td> <td width="95">display order</td> <td width="46"><a href="#">display</a></td> <td width="66"><a href="#">pricet</a></td> <td width="30"> </td> <td width="110">action</td> </tr> </div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data title finish --> <!-- 1px space start --> <div id="containerBg1"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- 1px space finish --> <!-- data top start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data top finish --> <!-- data content start --> <div id="containerBg4"> <!-- data start --> <form method="post" action="edit.php"> <table width="850" border="0" cellspacing="0" cellpadding="0"> <?php // let's get some data include('adminconnect.php'); $query = "SELECT ProductNo,ProductName,Display,Price FROM Product WHERE Producttype = 'Game' "; $result = mysql_query($query) or die (mysql_error()); while ($row = mysql_fetch_array($result)){ // loop through and display ?> <tr align="left"> <td><input type="radio" value="ProductNo<?php echo $row['ProductNo']; ?>" name="something" /></td> <td><a class="black"><?php echo $row['ProductNo'];?></a></td> <td><?php echo $row['ProductName'];?></td> <td>Display order results</td> <td><?php echo $row['Display'] ;?></td> <td><?php echo $row['Price'];?></td> <td> </td> <td><input type="submit" name="submit" value="Edit" /></td> </tr> <? } ?> </table> </form> </div> </div> <div class="clr"><!-- --></div> <!-- data content finish --> <!-- data btm start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data btm finish --> <!-- btm start --> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="container"> <div id="line"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="padTop16"><!-- --></div> <div class="clr"><!-- --></div> <!-- btm finish --> </div> </div> </body> </html>
  4. Sorry im new to this forum. How do I attach a screenshot??
  5. Ive changed things around a bit <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="25"> </td> <td width="100"><a href="#">serial no.</a></td> <td width="333"><a href="#">product name</a></td> <td width="95">display order</td> <td width="46"><a href="#">display</a></td> <td width="66"><a href="#">pricet</a></td> <td width="30"> </td> <td width="110">action</td> </tr> and <tr align="left"> <td><input type="radio" value="ProductNo<?php echo $row['ProductNo']; ?>" name="something" /></td> <td><a class="black"><?php echo $row['ProductNo'];?></a></td> <td><?php echo $row['ProductName'];?></td> <td>Display order results</td> <td><?php echo $row['Display'] ;?></td> <td><?php echo $row['Price'];?></td> <td> </td> <td><input type="submit" name="submit" value="Edit" /></td> </tr> <? } ?> </table> The tables still arent alligned correctly. They look as follows serial no. product name display order display pricet action 1 Call of Duty 4: Modern Warfare Display order results yes 55.99 2 Assassin's Creed Display order results yes 55.99 5 Ace Combat 6: Fires Of Liberat Display order results yes 55.99 3 The Simpsons Game Display order results yes 57.99 4 Need For Speed: ProStreet Display order results yes 55.99
  6. Thats a little better but still no right serial no. product name display order display pricet action 1 Call of Duty 4: Modern Warfare Display order results yes 55.99 2 Assassin's Creed Display order results yes 55.99 5 Ace Combat 6: Fires Of Liberat Display order results yes 55.99 3 The Simpsons Game Display order results yes 57.99 4 Need For Speed: ProStreet Display order results yes 55.99 Product name is too far to the left and display and pricet are too far to the left
  7. My headers are ftd (i want the radio button under here), serial no, product name, display order, display, pricet, action (Edit button under here)
  8. I know its not a php issue but my figures aren't lined up with my headings. The headings are formatted as below: <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="25"> </td> <td width="45" align="center">ftd</td> <td width="100"><a href="#">serial no.</a></td> <td width="333"><a href="#">product name</a></td> <td width="95" align="center">display order</td> <td width="46" align="center"><a href="#">display</a></td> <td width="66" align="right"><a href="#">pricet</a></td> <td width="30"> </td> <td width="110">action</td> The results are formattted as below <tr align="left"> <td width="33"><input type="radio" value="<?php echo $row['ProductNo'];?>" name="something" /></td> <td width="82"><a class="black"><?php echo $row['ProductNo'];?></a></td> <td width="61"><?php echo $row['ProductName'];?></td> <td width="61"><?php echo $row['Display'] ;?></td> <td width="230"><?php echo $row['Price'];?></td> <td width="230"><input type="submit" name="submit" value="Edit" /></td> </tr> <? } ?> </table> Any help would be great!!!
  9. Yeah that seems to work great. THANKS!! I know its not a php issue but my figures aren't lined up with my headings. The headings are formatted as below: <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="25"> </td> <td width="45" align="center">ftd</td> <td width="100"><a href="#">serial no.</a></td> <td width="333"><a href="#">product name</a></td> <td width="95" align="center">display order</td> <td width="46" align="center"><a href="#">display</a></td> <td width="66" align="right"><a href="#">pricet</a></td> <td width="30"> </td> <td width="110">action</td> The results are formattted as below <tr align="left"> <td width="33"><input type="radio" value="<?php echo $row['ProductNo'];?>" name="something" /></td> <td width="82"><a class="black"><?php echo $row['ProductNo'];?></a></td> <td width="61"><?php echo $row['ProductName'];?></td> <td width="61"><?php echo $row['Display'] ;?></td> <td width="230"><?php echo $row['Price'];?></td> <td width="230"><input type="submit" name="submit" value="Edit" /></td> </tr> <? } ?> </table> Any help would be great!!!
  10. I want to have a radio button appear at the start of each line of my loop aswell as an edit button at the end. My code at the minute is: <table width="850" border="0" cellspacing="0" cellpadding="0"> <?php // let's get some data include('adminconnect.php'); $query = "SELECT ProductNo,ProductName,Display,Price FROM Product WHERE Producttype = 'Game' "; $result = mysql_query($query) or die (mysql_error()); while ($row = mysql_fetch_array($result)){ // loop through and display ?> <tr align="left"> <td width="33"> </td> <td width="82"><a class="black"><?php echo $row['ProductNo'];?></a></td> <td width="61"><?php echo $row['ProductName'];?></td> <td width="61"><?php echo $row['Display'] ;?></td> <td width="230"><?php echo $row['Price'];?></td> </tr> <? } ?> </table> What i want to happen is that when the radio button is activted and the "Edit" button is pressed the page will be redirect to my edit.php page and the varibles will also be passed over
  11. If I wanted my php to just only show the products where the "Producttype" = Game what would the code be???
  12. I was getting the error Unknown column 'Dispay' in 'field list' so just corrected the Dispay to Display -------------------- Im getting the record 0 dispalyed in product number is there anyway I can remove this?
  13. Im still not to sure how to use that code revrez?? How do i get the error to report
  14. What would the line of code be to produce the error report and where would i place it?
  15. <table width="850" border="0" cellspacing="0" cellpadding="0"> <?php // let's get some data include('adminconnect.php'); $query = "SELECT ProductNo,ProductName,Dispay,Price FROM Product"; $result = mysql_query($query); while ($row = mysql_fetch_array($result)){ // loop through and display ?> <tr align="left"> <td width="33"> </td> <td width="82"><a class="black"><?php echo $row['ProductNo'];?></a></td> <td width="61"><?php echo $row['ProductName'];?></td> <td width="61"><?php echo $row['Display'] ;?></td> <td width="230"><?php echo $row['Price'];?></td> </tr> <? } ?> </table> This brings up: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\Admin_files\list.php on line 162 Line 162 is: while ($row = mysql_fetch_array($result)){
  16. Im getting the error Parse error: syntax error, unexpected '}' in C:\xampp\htdocs\Admin_files\list.php on line 176 My code so far is: <!-- data start --> <table width="850" border="0" cellspacing="0" cellpadding="0"> <?php // let's get some data include('adminconnect.php'); $query = "SELECT ProductNo,ProductName,Dispay,Price FROM Product"; $result = mysql_query($query); while ($row = mysql_fetch_array($result)): // loop through and display ?> <tr align="left"> <td width="33"> </td> <td width="82"><a class="black"><?php echo $row['ProductNo'];?></a></td> <td width="61"><?php echo $row['ProductName'];?></td> <td width="61"><?php echo $row['Display'] ;?></td> <td width="230"><?php echo $row['Price'];?></td> </tr> <? } ?> </table> line 176 is the bracket in the loop <? } ?>
  17. Yeah that looks like what im after but I've my table already predifined ie <td width="100"><a href class="black">3128385949</a></td> <td width="333">btrax ring 01</td> The 3128385949 refers to the ProductNo and "btrax ring 01" is the ProductName. Is it just a matter of replacing these with varible, if so how? Thanks in advance for any help!
  18. It was a piece of javascript in the code causing an issue. Thanks for the help!!
  19. I want my php code to autofill form my table as opposed to the fixed figures its using now I want to display, ProductNo, ProductName, Display and Price My SQL is: CREATE TABLE `product` ( `Producttype` varchar(4) collate latin1_general_ci default NULL, `ProductNo` decimal(7,0) NOT NULL default '0', `ProductName` varchar(30) collate latin1_general_ci default NULL, `Stockamount` decimal(5,0) default NULL, `Display` varchar(3) collate latin1_general_ci default NULL, `Description` varchar(10000) collate latin1_general_ci default NULL, `Price` decimal(6,2) default NULL, PRIMARY KEY (`ProductNo`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; My php is: <!-- data content start --> <div id="containerBg4"> <!-- data start --> <div class="padTop11"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop1"> <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="39"> </td> <td width="31" align="center"><input name="ftd" type="radio" value="01" checked="checked" /></td> <td width="100"><a class="black">3128385949</a></td> <td width="333">btrax ring 01</td> <td width="95" align="center"> <select name="position"> <option value="1" selected="selected">1</option> <option value="2" >2</option> <option value="3" >3</option> <option value="4" >4</option> <option value="5" >5</option> <option value="6" >6</option> <option value="7" >7</option> <option value="8" >8</option> <option value="9" >9</option> <option value="10" >10</option> </select> </td> <td width="46" align="center">show</td> <td width="66" align="right">$125.00</td> <td width="30"> </td> <td width="110"><a href="edit.php"><img src="../images/btn_edit.gif" alt="edit" width="73" height="23" border="0" /></a></td> </tr> </table> </div> <div class="clr"><!-- --></div> <div class="padTop11"><!-- --></div> <div class="clr"><!-- --></div> <div id="dottedIn"><!-- --></div> <div class="clr"><!-- --></div> <!-- data finish --> <!-- data start --> <div class="padTop11"><!-- --></div> <div class="clr"><!-- --></div> <div class="padTop1"> </div> <div class="clr"><!-- --></div> <div class="padTop11"><!-- --></div> <div class="clr"><!-- --></div> <div id="dottedIn"><!-- --></div> <div class="clr"><!-- --></div> <!-- data finish --> <!-- btn start --> <div class="clr"><!-- --></div> <div class="padTop100"><!-- --></div> <div class="clr"><!-- --></div> <div id="btn"> <div id="btnL"><img src="../images/btn_update.gif" alt="update" width="73" height="23" /></div> <div id="btnSpace"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="padTop16"><!-- --></div> <div class="clr"><!-- --></div> <!-- btn finish --> </div> <div class="clr"><!-- --></div> <!-- data content finish --> <!-- data btm start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data btm finish --> <!-- btm start --> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="container"> <div id="line"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="padTop16"><!-- --></div> <div class="clr"><!-- --></div> <!-- btm finish --> </form>
  20. I cant seem to post to the forum as I keep getting the error: Not Acceptable An appropriate representation of the requested resource /forums/index.php could not be found on this server.
  21. The results are printing out like: date orders revenue 2008-02-05 50 13000 2008-02-06 56 17000 But id like them to be something like date orders revenue 2008-02-05 50 13000 2008-02-06 56 17000
  22. How do i insert a screenshot between the image tags???
  23. At present my sales figure report just shows all the sales per day. I would like it only to display the days of only the current month and also diplay the month/year on the title of the table. Is there PHP code that will do this on the fly for me as opposed to changing the hard code each month? My code currently is: <form> <!-- data title start --> <div id="containerBg2"> <div class="padTop2"><!-- --></div> <div class="clr"><!-- --></div> <div class="titleBox"> <table width="850" border="0" cellspacing="0" cellpadding="0"> <tr align="left"> <td width="33"> </td> <td width="87"><a href="#">date</a></td> <td width="43" align="right"><a href="#">orders</a></td> <td width="118" align="right"><a href="#">revenue</a></td> <td width="569"> </td> </tr> </table> </div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data title finish --> <!-- 1px space start --> <div id="containerBg1"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- 1px space finish --> <!-- data top start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data top finish --> <!-- data content start --> <div id="containerBg4"> <?php include('adminconnect.php'); $sql = mysql_query("SELECT * FROM sales "); while( $row = mysql_fetch_array($sql) ) { ?> <tr align="left"> <td width="87" align="center"><?php echo $row['Date'];?></td> <td width="43" align="Left"><?php echo $row['Total Orders'];?></td> <td width="118" align="center"><?php echo $row['Revenue'];?></td> </tr> <?php } ?> </table> <!-- data btm start --> <div id="containerBg3"> <div class="padTop1"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <!-- data btm finish --> <!-- btm start --> <div id="containerBg1"> <div class="padTop15"><!-- --></div> <div class="clr"><!-- --></div> </div> <div class="clr"><!-- --></div> <div id="container"> <div id="line"><!-- --></div> </div> <!-- btm finish --> </form>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.