<?php
echo "asd";
$file = fopen('dom.txt', 'r');

$domains = array();
while ($row = fgets($file, 4096))
    $domains[] = $row;
fclose($file);

foreach ($domains as $domain)
{
	if (strstr($domain, '.com'))
		echo $domain."<br>";
}

?>