PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I have a form managed with PHP. While I'm in PHP, how do i get access to my HTML variables ?
For example, in the form, users enter their info. When the submit, i control the rest with PHP(in a PHP file). But I need to print their info(they are in the html file)!
HTML is not a programming language, the values of a form can be accessed in PHP via $_POST or $_GET. Have a look at the sticky about passing values in the "PHP Normal" forum.