Posts by Consule • 166 points
3 posts
-
3
votes6
answers109646
viewsA: What does the error "Script execution disabled on this system" mean?
An alternative to fix the problem is to run the command below inside the Command Prompt Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser In my case I was happening when I tried…
-
-1
votes1
answer36
viewsA: How to compare two fields (stock and minimum) of the same Table in (Mysql) using C#?
Make a new select using the mysql MIN() function. Create a new parameter and run like this: sqlPrecoMinimo = "SELECT MIN(preco) FROM produtos"; And put him in place of 15, example:…
-
1
votes1
answer60
viewsQ: Array is only returning the last index
I created an array that has the following structure: $arr = array( "cabecalho" => [ "instrucoes" => array("Instrucao 1", "Instrucao 2", "Instrucao 3", "Instrucao N"), "dadosAluno" =>…