G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php $day = $_GET["day"]; $pkg = $_GET['pkg']; include("example.php"); include('config.php'); $result = $js->prepare('SELECT * FROM `itinerary` WHERE pkgid = :pkg AND daynumber = :day '); $result->execute(array(':day' => $day, ':pkg' => $pkg)); while($row = $result->fetch(PDO::FETCH_ASSOC)) { $high = $row['highlights']; } echo "<option>$high</option>"; ?>