Posts by Jefferson Carvalho • 1 point
1 post
-
0
votes1
answer53
viewsA: how to make an if with php parameters inside javascript
Dude, I would do a request with AJAX taking the values from the PHP page: $.get( "ajax/test.html", function( data ) { $( ".result" ).html( data ); alert( "Load was performed." ); });…