Posts by Jefferson Hillebrecht • 33 points
9 posts
-
0
votes1
answer46
viewsQ: Display None in Chrome for iphone
I’m trying to hide items from a dropdown for value. In the Chrome of the computer and Android worked, but in the iPhone nay: option[value="home-01"]{ display: none; }…
-
0
votes3
answers1010
viewsA: Upload with ajax and java
To receive in Servlet you must do so: Part arquivo= request.getPart("nome_arquivo"); InputStream sInputStream = arquivo.getInputStream();
-
-1
votes3
answers321
viewsA: How to make a stylized edge?
You can do something like the example below: .border-on-top { border-top:1px solid black; position: relative; } .half-a-border-on-left { border-left: 1px solid black; position: relative; height:…
cssanswered Jefferson Hillebrecht 33 -
3
votes2
answers711
viewsQ: Hover div inside div
I have a div that is part of a link that are inside another div, I wanted if it passed the cursor in any part of the div there is apply both in the text of the link and the inside div. The Hover is…
-
0
votes4
answers45
viewsA: How to pass a text from the database to display it as a link on a website
You want the title to become a link? If that’s what you can do: echo "<a href='".$link."'>".$titulo."</a>"; I couldn’t understand the question, it might be clearer?…
-
0
votes2
answers1841
viewsA: How to send java post information to a php page?
//add reuqest header con.setRequestMethod("POST"); con.setRequestProperty("User-Agent", USER_AGENT); con.setRequestProperty("Accept-Language", "en-US,en;q=0.5"); String urlParameters = "user=Joao";…
-
0
votes0
answers82
viewsQ: Page reload when add product in cart - wp - wc
I’m trying to add a product in the cart without refreshing the page, however much the toilet option to use ajax is enabled it does not work. I was wondering how can I edit to not update.…
-
0
votes1
answer58
viewsA: Catching previous mysql database record
I have already decided, instead of picking the difference in the query I am doing when inserting the elements using timediff(hora1,hora2) timediff(curtime(), t1.hora)…
mysqlanswered Jefferson Hillebrecht 33 -
0
votes1
answer58
viewsQ: Catching previous mysql database record
I have two tables, I want to get the previous record of recorded data from the second table based on the first. Tabela 1 | Tabela 2 id - hora | id - id_tabela1 - cod 1 02:30 | 1 1 1 2 02:45 | 2 2 3…
mysqlasked Jefferson Hillebrecht 33