php - Get input name from different page in different folder
one text
Solution:
Well, you should just use a form.
<form method="post" action="articles/index.php">
<input name="search" type="text" placeholder="Search what you want">
</form>
Source