Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/check3/
Upload File :
Current File : /var/www/html/venkat/check3/list.php

<?php
$section1 = "sec_cdec.txt";
$result = shell_exec("sort -f $section1");
$result = explode("\n", $result);
$i = 0;
while ($result[$i]) {
	$result1 =explode('|', $result[$i]);
	echo $result1[0]."---".$result1[5]."<br>";
	$i++;
}
?>