Файл: upload/search.php
Строк: 54
<?php include 'settings.php' ?>
<?php include 'core.php' ?>
<!doctype html>
<html lang="en" id="itunesresults">
<head>
<?php include 'includes/meta.php' ?>
</head>
<body class="searchresults">
<?php include 'includes/header.php' ?>
<div class="container">
<div id="toplist">
<h1 class="text-center"><span class="query">Top <?php echo $_REQUEST['limit']; ?> <span class="text-info"><?php echo urldecode(str_replace("_",' ', $q));?></span></span> Apps in <?php echo $co; ?></h1>
<p class="text-info text-center">Most relevant <?php echo $json_output->resultCount;?> iTunes <?php echo urldecode(str_replace("_",' ', $q));?> Apps matching your search</p>
<?php include 'includes/list.php' ?>
<ul id="item-list">
<?php
if (!empty($json_output->results)) {
foreach ( $json_output->results as $result )
{
$trackname = $result->trackName;
echo "<li class="well">n";
echo "<a title="{$result->trackName}" href="".$domain."/app/".cleanURL($trackname)."/".niceURL($result->trackId)."/"><img src={$result->artworkUrl60}></a>n";
echo "<p><span class="title"><a title="{$result->trackName}" href="".$domain."/app/".cleanURL($trackname)."/".niceURL($result->trackId)."/"/>";
echo "{$result->trackName}</a></span>";
echo "<a href="$domain/search.php?q=".str_replace(" ","_",$result->sellerName)."" class="top-company"><span class="developer">{$result->sellerName}</span>n";
echo "</a></p></li>n";
}
}
else {echo '<p class="text-warning">No App results for your search.</p>';}
?>
</ul>
</div>
<?php include 'includes/footer.php' ?>
</div>
</body>
</html>