Posts by rmagalhaess • 849 points
11 posts
-
2
votes1
answer130
viewsA: Make a " or " inside the key of an attribute in JS
This does not work for the following reason When evaluating the expression [scope.cm || scope.mm || scope.km], the first value is considered valid, then the others are not evaluated. See a test…
-
5
votes2
answers169
viewsQ: translate GPL when distributing softtware in Brazil
As I intend to distribute some utilities of mine, I have these doubts: The English version of the GPL is valid in non-English-speaking countries ? I need to translate the GPL by including it in my…
-
1
votes1
answer150
viewsA: Log with historical debug (Intellitrace)
The answers are very long, so I’ll put the links not to "pollute" the text: How can I collect Intellitrace information in my application, not being in debug? Using the Intellitrace autonomous…
-
4
votes2
answers263
viewsA: How do I make mysql_num_rows of various results
Can be done directly in a query in Mysql: SELECT nomeitem, count(nomeitem) as quantidade FROM tabela GROUP BY nomeitem; https://dev.mysql.com/doc/refman/5.7/en/counting-rows.html With this you have…
-
5
votes1
answer1840
viewsA: How to implement editable table by updating the fields in the database automatically
I made some changes to your files, summarizing: Do not use mysql_, utilize mysqli_ When an UPDATE command is executed, the expected result is TRUE and not "mysqli_result" to pass to the function…
-
2
votes2
answers131
viewsA: Character display using numeric codes: ߷
I found the answers to my questions: This problem exists because the symbol does not exist for the specified number ? Yes, some numbers have no character/symbol…
-
1
votes1
answer590
viewsA: Is it possible to read a Quick Report file (qrp) from PHP?
Technically the answer is yes. Download this app: Smartqrp http://download.cnet.com/SmartQRP/3000-10743_4-10433393.html (only 686 Kbytes) It can be operated by command line and export to PDF, you…
-
3
votes2
answers131
viewsQ: Character display using numeric codes: ߷
I tried to search on the subject in Google, but it was difficult because several other subjects are related, so I ask here. I am using special characters, printed from the respective numeric code,…
-
11
votes4
answers1508
viewsA: What is the difference between continuous integration and continuous delivery?
Searching on the Internet: https://www.4linux.com.br/diferencas-entre-integracao-deploy-e-entrega-continua The Continuous Integration promotes joint work and for this it is essential that the use of…
-
2
votes3
answers90
viewsA: IF comparing with GET does not work
First, before accessing a value within $_GET it is best to check if the value exists using isset. Second, it’s better compare with three equal signs "===", so you compare the value and the type,…
phpanswered rmagalhaess 849 -
13
votes2
answers225
viewsA: What is Fastexpando/Fastexpandoobject?
First, in the framework . NET there is the Expandoobject class, which allows the expansion of an object at runtime. http://msdn.microsoft.com/pt-br/library/system.dynamic.expandoobject(v=vs.110).…