Posts by Adriano Aquino • 1,295 points
11 posts
-
0
votes2
answers60
viewsA: Calculation for year "turn" with Trigger
thanks for the contribution; we edited its version and became functional as follows: DECLARE DIA_VENDA VARCHAR(2); MES_VENDA VARCHAR(2); MES_VENDA2 VARCHAR(2); MES_VENDA_DEPOIS VARCHAR(2); ANO_VENDA…
-
2
votes2
answers60
viewsQ: Calculation for year "turn" with Trigger
How to treat the Trigger below so that the operations carried out between 21/11/2016 and 20/12/2016 return date 20/01/2017 instead of 20/01/2016. DECLARE P_COUNT NUMBER(5); DIA_VENDA VARCHAR(2);…
-
3
votes1
answer12681
viewsQ: How to redirect subdomain to fixed IP on specific port
I am using a web application that runs on port 8180 and would like to redirect my subdomain to my server IP on port 8180. In the DNS zones, I created a type A entry, but I can only inform the IP,…
-
1
votes1
answer413
viewsA: Insert link in Fancybox popup image
It wasn’t quite what I wanted, but I managed to insert the link inside the "title", see: title="<a href="www.exemplo.com" target="_blank">Nome do Produto</a>" I just didn’t like it…
-
2
votes1
answer413
viewsQ: Insert link in Fancybox popup image
How to insert a link in the image that opens (popup) in the fancybox after clicking? Excerpt from the HTML code: <li> <a class="fancybox" rel="group" href="imagem_grande.jpg"…
-
0
votes1
answer360
viewsQ: How to return data in a <select> tag?
I have a product table, where a product can have several photos. When the code is selected in the <select> it should return all registered photos. How do I do this?
-
1
votes0
answers55
viewsQ: Code maintenance for uploading images of original size
I am maintaining a code that uses the function below to upload and resize the image: function uploadArquivo($file, $dir_file, $prefixo_nome, $thumb = false, $dir_thumb = array(), $sizes = array()) {…
-
94
votes4
answers82811
viewsQ: What is and what does a full stack web Developer do?
I’ve been looking for that term and I don’t quite understand the function of this IT professional. What is a "full stack web Developer"?
terminologyasked Adriano Aquino 1,295 -
7
votes2
answers4809
viewsQ: How to leave a text centered between two horizontal lines?
I need to use text centered on the page and between two horizontal lines in all project titles, as below: The title text has magin: 0 35px, is dynamic and horizontal lines shall increase or decrease…
-
4
votes4
answers4234
viewsQ: Convert Mysql date (YYYY/mm/dd h:m:s) to dd/mm/yyyy
Check out my database: I’m using the following code: <?php $data = $noticia->data_cadastro; setlocale(LC_ALL, "pt_BR", "pt_BR.iso-8859-1", "pt_BR.utf-8", "portuguese");…
-
4
votes1
answer245
viewsQ: How to create a page numerator?
I am developing a page "News" with several news, and it will be displayed only 9 news per page, above that, should go to page 2 and so on... how do I do this?…