read PDF and DOC files using PHP
Reading PDF Files
$content = shell_exec('/usr/local/bin/pdftotext '.$filename.' -');
Reading DOC Files
$content = shell_exec('/usr/local/bin/antiword '.$filename);
Latest Technology, Windows 7, Windows 8, Business, Bollywood News,Internet news, reviews
read PDF and DOC files using PHP
$content = shell_exec('/usr/local/bin/pdftotext '.$filename.' -');
$content = shell_exec('/usr/local/bin/antiword '.$filename);