Posts by Anderson • 33 points
2 posts
-
0
votes4
answers712
viewsQ: How to access only the first position of each row in an array of arrays (matrix / multidimensional array) using foreach?
I have a array multidimensional / array of arrays / matrix (as you prefer to call): public string[,] operacoes = { { "SOMA", "", "" }, { "SUBTRAÇÃO", "", "" }, { "MULTIPLICAÇÃO", "", "" }, {…
-
3
votes1
answer36
viewsQ: Is it possible to assign a value different from the value acquired from an OPTION in a SELECT when submitting the form to PHP?
Well, I believe the title of this question has been confused, but I’ll try to elaborate on my problem. I’m developing a project with the Codeigniter framework (I’m a beginner) where I have a…