Is there a way to set a $_POST['var']
without using form related field (no type='hidden') and using only PHP.
Something like
$_POST['name'] = "Denniss";
Bunu yapmak için bir yolu var mı?
EDIT: Someone asked me for some elaboration on this. So for example, I have page with a form on it, The form looks something like this
<form method='post' action='next.php'>
<input type='text' name='text' value='' />
<input type=submit' name='submit' value='Submit'/>
</form>
Gönder düğmesine tıkladıktan sonra, ben next.php yönlendirildi alacak. Bana başka bir değere değişkeni $ _POST ['text'] ayarlamak için bir yolu var mı? Ben başka tıkladığımda $ _POST ['text'] Ben gizli bir alanı kullanmadan next.php ayarlanır ne olacak (örneğin) Gönder düğmesini böylece Bunu nasıl kalıcı yapabilirim.
Bu hala net değilse bana bildirin ve yardım için teşekkür ederim.