i started to write php script to show phones in columns:
<?php
I=0;
$fh=fopen("phones.txt,"r");
while(!feof($fh))
{
$content[]=fgets($fh);
$i++;
}
fclose ($fh);
for($line=0;$line<=$i;$line++)
{
if (strpos($content[$line]"972")!=0
{
echo "\n"."<br>";
echo $content[$line];
}
my text file phones :
<span title="+1 (718) 207-0985, +1 (929) 402-6319, +39 346 386 6315, +44 7504 400424, +92 306 9386209, +972 50-223-8110, +972 50-235-2282, +972 50-240-8779, +972 50-281-1336, +972...
simple php script to save lines to columns
from PHP https://ift.tt/2mgL31a
via IFTTT

0 Comments