But still i am not able how to read ppt file in php.
i used this code , but it display something binary.
$myFile = $_SERVER['DOCUMENT_ROOT'].'test/test.ppt';
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
echo $theData;