Posts by Carlos André • 53 points
6 posts
-
0
votes1
answer20
viewsA: txt file content display in php
It is missing the "fgets" to pick up the content of the line, try so: <?php $dados = array(); $arquivo = fopen('Log_Cadastro_de_ident.txt', 'r'); while (!feof($arquivo)) { $line =…
-
-1
votes1
answer42
viewsQ: INSTER MYSQL PHP PDO ERROR
I’m trying to make an Insert using PHP PDO, but it is always returning an error, which I am not able to solve $insert = "INSERT INTO usuarios ('usuario', 'senha', 'telefone', 'email', 'tipo',…
-
0
votes2
answers118
viewsA: Last Registration by date
SELECT * FROM Tabela WHERE ordem = numero da orem ORDER BY Hora DESC, horafim DESC LIMIT 1;
-
-1
votes1
answer103
viewsQ: Is it possible to permanently change an html file with Javascript?
Change dynamically I know it is possible, but I wonder if it is possible to change an html file permanently with Javascript
javascriptasked Carlos André 53 -
0
votes1
answer61
viewsA: Help with PHP (passing data from one screen to another)
The problem is that the code block that receives the date information and query is on the wrong page, when you defined in the form that the action = generates.php it throws all the data there then…
-
2
votes2
answers224
viewsQ: Select Inner Join of what is not in the other table
I have two tables, Anuidades and Pagamentos. Of these annuities it is necessary to select the data of Anuidades which have not yet been paid. Table Anuidades Table Pagamentos To return the annuities…