19-12-19, 07:00 PM
(19-12-19, 06:23 PM)smalw كتب :مشكور اخي احتاج الكود في نفس الكود الخاص بي(19-12-19, 03:31 PM)abumuhannadzym كتب :PHP كود :
<?PHP
$file_handle = fopen("data.txt", "r" );
while (!feof($file_handle) )
{
$line_of_text = fgetcsv($file_handle);
echo $line_of_text[1];
}
fclose($file_handle);
?>
الارقام في ملف التكست كتالي
11
22
11
77
44
55
66
44
كود :
<?PHP
$lines = file("data.txt", FILE_IGNORE_NEW_LINES);
echo max($lines);
?>
<?PHP
$file_handle = fopen("data.txt", "r" );
while (!feof($file_handle) )
{
$line_of_text = fgetcsv($file_handle);
echo $line_of_text[1];
}
fclose($file_handle);
?>
