Exemple #1
0
">

                                      <span class="input-group-btn">
                                        <button class="btn btn-primary googleprimaryBtn" type="submit"><i class="fa fa-search"></i></button>
                                      </span>
                                    </div>
                                </form>
                            </div>
                        </div>
                        <div class="col-md-8 col-md-offset-1 col-lg-5">
                            <br>
                            <div class="googleResultStats">Ungefähr <?php 
        echo figureFormat($data['searchInformation']['totalResults'], 0);
        ?>
 Ergebnisse<nobr> (<?php 
        echo figureFormat($data['searchInformation']['searchTime'], 2);
        ?>
 Sekunden)&nbsp;</nobr></div>
                            <?php 
        foreach ($data['items'] as $key => $res) {
            ?>
                                <div class="googleResult">
                                    <a href="<?php 
            echo $res['link'];
            ?>
" class="googleTitle"><?php 
            echo $res['htmlTitle'];
            ?>
</a><br>
                                    <a class="googleLink" href="<?php 
            echo $res['link'];
    ?>
        <tr class=" searchresults filterme ">
            <?php 
    foreach ($tabledata['fields']['keys'] as $key => $feld) {
        ?>
                    <td class="noWrap"><?php 
        switch ($feld) {
            case 'download':
                if ($filterrow[$feld] == 1) {
                    ?>
                                    <i class="fa fa-file-pdf-o"></i>
                                <?php 
                }
                break;
            case 'preis':
                echo figureFormat($filterrow[$feld], 2);
                break;
            default:
                echo $filterrow[$feld];
                break;
        }
        ?>
                    </td>
                <?php 
    }
    ?>
        </tr>
        <?php 
}
?>