Answers for "read php line by line form mysql"

PHP
0

read line by line php

<?php
	
	$file = new SplFileObject("file.txt");

	while(!$file->eof())
	  {
		echo $file->fgets()."<br/>";
	  }

	$file = null;

?>
Posted by: Guest on December-25-2020

Code answers related to "read php line by line form mysql"

Browse Popular Code Answers by Language