<?php

/**
 * Query Yahoo! Web, Image and News searches
 */
require_once 'Zend/Service/Yahoo.php';
if (isset($_POST) && strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
    $filter = new Zend_InputFilter($_POST);
    $keywords = $filter->getAlnum('search_term');
} else {
    $keywords = '';
}
?>
<!DOCTYPE html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <style type="text/css">
        html, body {
            margin: 0px;
            padding: 0px;
            font-family: Tahoma, Verdana, sans-serif;
            font-size: 10px;
        }

        h1 {
            margin-top: 0px;
            background-color: darkblue;
            color: white;
            font-size: 16px;
        }