Posts by Anderson Brandão • 1 point
4 posts
-
-2
votes1
answer66
viewsA: Form does not work in Chrome 69 but works in 68. What has changed?
Through this answer in the English Stack I managed to solve the problem. Remove extra form data , if "value" attribute is present with non-empty value for (Removed) DOM As per spec,…
-
-3
votes2
answers1691
viewsA: How to prevent a form from being reloaded when updating your browser page?
This worked for me. In F5, the POST md5 does not change. So we use this gap to identify whether the Submit is real or just refresh. if( $_SERVER['REQUEST_METHOD']=='POST' ) { $request = md5(…
-
-3
votes1
answer66
viewsQ: Form does not work in Chrome 69 but works in 68. What has changed?
Why does this simple form not work in the new Chrome v69? What do I have to add or remove to run again? <?php require('conISO.php'); if(isset($_POST['modelo'])){$modelo = $_POST['modelo'];}…
-
-2
votes3
answers92
viewsQ: PHP variable in Javascript
The simple and practical method I found here in Stack of passing a PHP variable to a JS has worked well so far. However, with a certain content it only works if I feed this PHP variable, but let…