Posts by Nicolas Souza • 7 points
3 posts
-
-1
votes1
answer21
viewsQ: Why is the data coming from the form only displayed after the resubmission of the form?
I am developing a task manager. Obviously I need a task add function. function loadInputForm () { global $title, $status,$description, $date; if($_POST){ $title = filter_input(INPUT_POST, "titulo");…
-
-1
votes1
answer29
viewsQ: How to adapt layout according to browser resizing?
I built a function to read the size of the window through which the user is accessing the site, compare with a standard break-point that I chose and then adapt the layout. I put an example of change…
-
-1
votes1
answer127
viewsQ: How to read String in the best way to use it as a halting condition of a loop?
I’m trying to ask for input to a string and read it as a halting condition of a loop but I’m not getting it. Logic Error. #include <stdio.h> #include <locale.h> #include…