Posts by Marcos Vinicius • 21 points
2 posts
-
0
votes2
answers227
viewsQ: How to save variable and use after page refresh
//variavel recebe de input html $ssid = @$_POST['user']; if(isset($_POST['enviar']) { //deveria printar valor na tela echo $ssid; } The variable $ssid receives an input value, but when I click on…
phpasked Marcos Vinicius 21 -
-1
votes2
answers597
viewsQ: Change user password (Active Directory) using php and powershell
I need to change the password of an AD user using php and powershell would be like: connect to AD with ldap, write powershell codeline in php and run it, make it run in AD too, wrote a line to show…