Live Tracking of Jobs
- Track the work progress from start to end and check exact completion dates defined for each stage.
- Use our Private Message board as your communication gateway correspond directly with our staff and monitor your job during the whole process.
- Upload necessary files and documents for the project.
- Download entire reports to your desktop to keep a hard copy for yourself.
/*
============================================================================================================
Version : 1.0
Description : Free Keyword Research Tool
Copyright : (c) SeoBook.com, licensed under the GPL ( http://www.gnu.org/licenses/gpl.txt )
Function : Allows you to cross reference many keyword research tools.
============================================================================================================
*/
include 'form.php';
$mkt=$_REQUEST['mkt'];if(!isset($mkt)) $mkt='US';
$c=$_REQUEST['c'];
$keyword=$_REQUEST['keyword'];
switch ($c)
{
case 1:
{
include 'clsOvertureSuggest.php';
$suggest=&New suggest;
$result=$suggest->getSuggestions($keyword,$mkt);
include 'results.php';
}
}
?>