How to make search query like Youtube? [closed]

It actually has nothing to do with the underlying server side language. Basic HTML can give you that result:

<form action="//yoursite.com/results" method="get">
  <input type="text" name="search_query" value="" />
  <input type="submit" value="Submit" />
</form>

Leave a Comment