Posts by Mickael Souza • 64 points
4 posts
-
1
votes0
answers27
viewsQ: PHP - Undefined Index on line 18 login system
<?php if($_POST){ $nome = $_POST['nome']; $pass = $_POST['pass']; require_once 'connect.php'; $cons = "SELECT * FROM usuario;"; $execute =…
-
0
votes1
answer746
viewsA: How to call files on localhost
If the files are in the same folder as your main html, you can call the file folder name and the file name. Example<link rel="nome_da_pasta/nome_arquivo>"
-
3
votes2
answers7430
viewsQ: Calculate time interval in hours and minutes considering different days
For now I have this code that is calculating the interval between the hours. I want to increment the calculation with minutes, and I want to make some changes in logic, for example when I put the…
-
-5
votes2
answers443
viewsQ: The "pay()" function does not return the correct result
I have the following statement: A parking lot charges a minimum fee of R$2.00 to park by three hours. An additional R$0.50 per hour does not necessarily is charged after the first three hours. The…