Posts by Daniel Augusto Bastos • 127 points
6 posts
-
1
votes1
answer202
viewsA: How do I not select repeated data that contains a specific value in SQL in a column?
select ex.[Nº Tel], ex.[Nº Contrato], ex.[Motivo de Envio], ex.[Status], ex.[Data Ativação], ex.[Data Importação], ex.[Data Alteração], ex.[CPF/CNPJ], ex.[IMEI], ex.[Usuário], ex.[Filiais],…
-
0
votes2
answers292
viewsA: Tools for Prototype Mobile App
I use Pencil a lot (https://pencil.evolus.vn). It is customizable in the elements, open source and multi-platform(What is very important to me) Don’t expect a very large set of components. Although…
-
2
votes3
answers327
viewsA: Error reading JSON with PHP
Your code is correct. The error is in the json content. The last element of a list cannot contain a comma in json as in PHP. If you use the block below, you will see that your first code works…
-
1
votes1
answer177
viewsA: foreach with multiple variables
You’re creating a different key than you need. Instead of creating $record as you are generating, try: $record = array(); foreach($resultCustomers as $group) {…
-
3
votes3
answers1379
viewsA: How can I see upgraded package versions via Composer?
Just use the command composer show see the full doc here: https://getcomposer.org/doc/03-cli.md#show…
-
1
votes2
answers241
viewsA: Why does Steam api refuse Angular calls?
You must have a problem with Cors (https://pt.wikipedia.org/wiki/Cross-origin_resource_sharing). In a well summarized explanation, when you try to access something with ajax outside the source…