コード例 #1
0
	</section>
	<section id="content">
		<div class="container content">		
        <!-- Service Blcoks -->
		<div class="row mar-b-50">
        
        <div class="col-lg-12 about wow fadeInRight animated" data-wow-animation-name="none" >
          <h3>
           Search Here
          </h3>
          <p>

<?php 
require_once 'class.ebay.php';
$ebay = new ebay('student93-9027-4244-891a-f8a94897de2', 'EBAY-IN');
$sort_orders = $ebay->sortOrders();
?>

<form action="services.php" method="post">
	<input type="text" name="search" id="search"  style="color:blue " placeholder="Enter the Key word">
	<select name="sort" id="sort">
	<?php 
foreach ($sort_orders as $key => $sort_order) {
    ?>
		<option value="<?php 
    echo $key;
    ?>
"  style="background-color:#ccffff"><?php 
    echo $sort_order;
    ?>
</option>