| Current Path : /var/www/html/mmishra/mm/ada/ |
| Current File : /var/www/html/mmishra/mm/ada/readText.php |
<?php
$no = 0;
$fp = fopen("total_plot.txt","r");
while (!feof($fp)) {
$line = fgets($fp);
$attr = explode(",",$line);
$no++;
$sql = "insert into allottees values($no";
$i = 0;
foreach ($attr as $atr) {
$i++;
$atr = str_replace("'","",$atr);
$atr = str_replace(",","",$atr);
if (strpos($atr,"/") && strpos($atr,":")) $atr = '"' . $atr . '"';
if (!$atr)
$sql .= ',""';
else
$sql .= "," . $atr;
}
if (substr($sql,-2) == ", ") $sql = $sql . "0";
$sql .= "0);\n";
echo $sql;
}
fclose($fp);
?>