Skip to content
Advertisement

PHP Read input from user

I try open url from user input value but its no value

JavaScript

here result that should be

user input = 13

output url

localhost/page.php?page=editdatapo&id=13

but output like this

localhost/page.php?page=editdatapo&id=

Advertisement

Answer

JavaScript

Try using GET. After hitting submit, it will redirect to:

page.php?page=editdatapo&id=USER_INPUT

This way, you dont have to use $_POST just to access the link. You can just type the id then hit Enter/Find directly.

By default, forms without the method attribute uses GET and you can omit it if you really want to.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement