I have log-in page, now I want to use the username input for two separate PHPs. how can I do it?
<form method = "post" action="login.php">
<input type = "hidden" name = "submitted" value = "true"/>
<h1>НЭВТРЭХ</h1>
<div>
<input type="text" placeholder="Student ID" required="" id="username" name="username"/>
</div>
<div>
<input type="password" placeholder="Password" required="" id="password" name="password"/>
</div>
<div>
<input id="button" type="submit" name="submit" value="НЭВТРЭХ" />
<a href="#">Lost your password?</a>
</div>
</form><!-- form -->
The login.php is the first php calling the string. this php gets the string and works fine. but i want to use this string for another PHP.