Posts by vs_carlos • 41 points
4 posts
-
0
votes1
answer26
viewsA: How to run a code block from a number of specific items recorded in the table?
Using your example table you could make a query in the database this way: SELECT count(*) AS qtd, nome, WEEK(`data`) AS semana FROM semanas_tbl GROUP BY semana; In this case the result of your query…
-
3
votes2
answers691
viewsQ: How to index an iframe in Google?
This site uses a <iframe/> to display your Views. Views are inserted and displayed through of this platform. But even though it’s an iframe, Google indexes. How is that possible?…
-
0
votes3
answers757
viewsA: Problem with Return false in Javascript
Let’s imagine that your HTML is like this: <ul> <li class="dropdown"> <a href="">Abrir drop down A</a> <ul> <li><a href="">Link A 1</a></li>…
-
1
votes1
answer742
viewsA: HTML/Javascript Connection Webservice C#
Regardless of the back-end language used to communicate with JS/HTML you must use a REST service, that is your application must return a JSON to any request made through JS. Let’s imagine that your…