Posts by Eric Castro • 43 points
3 posts
-
3
votes1
answer423
viewsQ: How to print accent on a Console Application project . NET Core
using System; namespace MediaDoisNumeros { class Program { static void Main(string[] args) { Int16 numero1, numero2; Double media; Console.Write("Digite o numero 1 : "); numero1 =…
-
1
votes2
answers2210
viewsA: View associative array elements with foreach
You have placed an associative array within another associative array, try to use this code: <?php header('Content-type: text/html; charset=utf-8'); $usuarios = array( array("nome"=>"José",…
-
0
votes1
answer79
viewsA: PHP - JAVASCRIPT - Take a form obtained variable to another PHP page
change window.location.href='deleteuser.php?id='; for window.location.assign("deleteuser.php?id=<?=$id?>");