Posts by leandroqara • 19 points
2 posts
-
1
votes2
answers924
viewsA: How to take text from another page and insert it into an input?
Alexander, the simplest way to do it is as follows: index php.: <html> <body> <form id="form1" method="post" action="puxa.php" > <input id="pegar" name="pegar" class="campo"…
phpanswered leandroqara 19 -
-1
votes2
answers924
viewsA: How to take text from another page and insert it into an input?
Yes. send the value of the page through an ajax request or make a post. You can save this value to a Session object. In php it would be: $Session['name_session'] = 'value sent'; on the other page it…
phpanswered leandroqara 19