Posts by Rafa • 55 points
4 posts
-
0
votes1
answer94
viewsQ: How to get next Friday’s date
I would like to inform you what day falls every Friday coming, how do I do? Then when you arrive next Friday you inform the other Friday and so on.
-
3
votes1
answer56
viewsQ: How to check in a TXT if something repeats?
I have a TXT file storing data separated by | and would like php to check if there is anything repeating there as I do? In TXT the data is like this: ID|NOME|TELEFONE|ENDERECO|REFERENCIA Every added…
-
0
votes2
answers450
viewsQ: Need to check if a line is duplicated in my TXT how do I do?
I need to check if a line is duplicated in mine TXT how do I do? <?php $divisao = "1000000000000"; $linha = file("clientes/clientes.txt"); //Abre o banco de dados $total = count($linha); //Conta…
-
1
votes1
answer82
viewsQ: Print separate but same id Divs
I would like a script to print one div separate from the other that has the same id ex.: <div id="print"> <p>Imprimir este conteúdo separado das outras div</p> <input…