Posts by anacvignola • 158 points
11 posts
-
0
votes1
answer161
viewsA: Doubt Js code for div exchange
You could do this by simply placing the two Ivs, one of them with display: None, in the same place and each time you click from a display: block on one and display: None on the other with js, you…
-
0
votes1
answer1977
viewsA: iframe :Failed to Launch <link> because the Scheme does not have a Registered Handler
The URL you are using is correct. BUT if you are trying this in the simulator, it will not work and will show exactly the error. The App Store or Playstore app URL scheme works on one device only,…
-
0
votes1
answer90
viewsA: File build error . cpp using Mingw
If you are using Codeblocks in windows, it is good to reinstall codeblocks-17.12mingw-setup.exe then probably fix this problem.…
-
2
votes2
answers105
viewsA: My while has no end
I think you want it to work that way: #include <stdio.h> #include <stdlib.h> int main(void){ float x,y; int operador; do{ printf("\n\nEscolha a operacao:");…
-
0
votes4
answers674
viewsA: code of the PHP page appearing when clicking the Submit button of the form
With database I never did, but I made a form with sending email, and I used Ajax because of the redirection of the page I did not want, and I had this problem sending that showed what was happening…
-
0
votes3
answers319
viewsA: Build error in C++
You are mixing C++ with C by the way, follows below the correct code of what I understood. #include <stdio.h> #include <stdlib.h> int main (void){ int deseja; float valordomes1,…
-
0
votes1
answer66
viewsA: Responsiveness Css
You have to declare the font-size in each @media-screen to get really how you want it. Take a read here, this will also help.…
-
3
votes1
answer8559
viewsA: Like putting a div under one?
Tries .container { width: 60%; margin: 0px 160px; box-sizing: border-box; border: 1px solid red; display: block; justify-content: center; align-items: center; flex-wrap: wrap; padding-top: 1rem;…
-
4
votes1
answer383
viewsA: Python - What is Enum?
Enum is basically a list of constant values. The use of enums makes it easier for the programmer to access information. Enum automatically or manually associates a numerical value with a string. See…
-
2
votes1
answer88
viewsQ: Positioning <p> on one side and img on the other
I’m not getting my position <p> left and mine <img> right, and even worse the first label of my form rises above my header, how do I position ? <div class="container"> <div…
-
-1
votes2
answers137
viewsQ: How to send the form without redirecting to another PHP page
How to send the form behind without redirecting to another page just clear the fields and display an alert or message that was sent, without refreshing the page, because I did so : echo ("<SCRIPT…
phpasked anacvignola 158