Пример #1
0
				padding-right: 10px;
				margin-right: 55px;
			}
		</style>
	</Head>
	<Body>
			<form class="forms" action="" method="post">
				<label>TWITTER LAB TVP</label>
			</form>
			<form class="form" action="" method="post">
				<label>Искать по хештэгу #: <input type="text" size="" name="search_hash" placeholder="              Search"> </label>
			</form>
			<form class="form" action="" method="post">
				<label>Искать по ключевому слову : <input type="text" name="search" placeholder="              Search"></label>
			</form>
	<div class="background">
	<table>
	
	<?php 
if (isset($_POST['search_hash'])) {
    $TwiApi->SearchByHashTags($_POST['search_hash']);
}
if (isset($_POST['search'])) {
    $TwiApi->SearchByKeyWord($_POST['search']);
}
?>
	
	</table>
	</div>
	</Body>
</html>