i have one code in php, the code always worked on the old server, i new server not working! is possoble one problem in php.ini ?
the code is
<?php error_reporting(false); header('Content-type: audio/mpeg'); $audio=array( '1' => 'http://mysite/1.mp3', '2' => 'http://mysite/2.mp3', '3' => 'http://mysite/3.mp3', '4' => 'http://mysite/4.mp3' ); readfile ($audio[$_GET['porta']]); ?>