Posts by Daniel Gonçalves • 21 points
3 posts
-
0
votes1
answer59
viewsQ: Insert a character in a specific point of a String
I need a light. I have a program that receives, processes a txt and plays on the bench. The txt comes this way: 1;;Company Name 145241;00.000.000/0001-77;A;0,00000000;5000 Each ' ; ' separates the…
-
0
votes2
answers234
viewsA: How to skip line when reading a txt in PHP?
Resolution: <?php session_start(); include_once("conexaoFin.php"); $arquivo_tmp = $_FILES['arquivoTxt']['tmp_name']; // tmp_name é o caminho do arquivo $dados = file($arquivo_tmp); $TiraLnha =…
-
0
votes2
answers234
viewsQ: How to skip line when reading a txt in PHP?
I am working on a system that will run on the Web, using PHP and html and I have a question. My program reads the txt and separates the information through the delimiter ; writes to an array and…