Posts by Pedro Martins • 1 point
2 posts
-
0
votes2
answers254
viewsA: How to redirect the user to a specific PHP page?
It’s best if you create tags for each user and check the tags, but if you want something basic you can use this code: if($nome == "diego.santos" && $password == "12345"){ header('Location:…
-
0
votes1
answer216
viewsA: Javascript return result to Controller
You have to store the data in an array, then either send by POST or Xmlhttprequest, with the following code you can know which ones are selected: $('#my-select').multiSelect({ afterSelect:…