Posts by Inicianteee • 11 points
3 posts
-
-2
votes2
answers1446
viewsQ: How to pick up array index?
I have the following APEX code List<integer> entrada = new List<integer>(); public static void generateStringArray(integer entrada){ List<String> ListaPrincipal = new…
-
-3
votes2
answers294
viewsA: Concatenate variable with array in PHP
Original array $_FILES['file']['name']; $_FILES['file']['name'] = "test"; The exit is the name test as I wanted, much simpler and answered
-
-1
votes2
answers294
viewsQ: Concatenate variable with array in PHP
I have a variable nome, and a array. How to put this variable in array? Example: ['dia'].$nome; When I do this, returns error. The array dia contains a string, as an example: "Domingo", and nome the…