Eg. www.google.com
to com.google.www
I have a full list of address to be flip over. It's all stored in "queriess.csv"
How should the code be like?
<?php
$file = file('queriess.csv');
foreach($file as $line){
list($ipadd)=explode(" ", $line);
echo"<b>$ipadd </b>";
}