Posts by Vagner Franco • 33 points
5 posts
-
0
votes2
answers144
viewsA: Group in mysql together with Join
Not to repeat the first column You need a group by de idAluno and take the group by from Cpf. Normally cpfs are unique and it doesn’t make much sense to group by in them but would lose the different…
-
0
votes2
answers768
viewsQ: What is the best way to generate tables dynamically in php?
I have an admin and I have serious doubts about how to generate tables in php normally what I do is paste html in a web editor but this solution does not seem to me the best suggestions?
phpasked Vagner Franco 33 -
1
votes4
answers760
viewsA: What are Path Finding Algorithms?
There are several types of algorithms, the main ones being the search for the minimum path. One of the best known is djikstra is used in computer routing networks. Very common its use in graphs with…
-
1
votes3
answers88
viewsA: Merge array as PHP
$categoria_1[0] = array( 'code' => 'ALI000001', 'name' => 'Alimento > Arroz' ); $categoria_2[0] = array( 'code' => 'ALI000002', 'name' => 'Alimento > Massas' ); $category[0] =…
-
0
votes1
answer195
viewsQ: How to make jquery stop in a loop
I have a code like function check() { if (!$.isNumeric($('[name=produto_id]').val()) || $('[name=produto_id]').val()<=0) { console.log($('[name=produto_id]').val()) ; return setTimeout(check,…
javascriptasked Vagner Franco 33