Posts by Marcel Melo • 11 points
3 posts
-
-1
votes1
answer80
viewsQ: Php namespace inherits "use" from another class
It would be possible to "inherit" imports, use of a class? Example Car.php <?php namespace app\model; use app\Utils; use app\Banco; class Carro{} main.php <?php namespace app\model; use…
-
0
votes1
answer69
viewsA: Jquery does not work with <input> loaded with Ajax
Tried to put it like this? $('body').on('click', '#botao', function (e) { alert('teste'); });
-
1
votes2
answers1262
viewsQ: PHP Check/Take Down Login Duplicity Session
Is there any tool or something of the kind to check if the same user is logging in in two different locations and bring down the older login? Example: I’m logged in to the PHP system that uses…