2012-07-11 68 views

回答

0

上傳我的課: http://pastebin.com/xg6Y5rsR

用途:

<form action="index.php" method="post"> 
    Url soundcloud: <input type="text" name="fname" /><br /> 
    <input type="submit" value="Submit" /> 
</form> 

<?php 

if($_POST['fname']){ 

include("class.soundcloud.php"); 
$sCloud = new soundCloud(); 

$filename = $sCloud->exploserChaine($_POST['fname']); 
$link = $sCloud->exploserChaine($sCloud->getMp3($_POST['fname'])); 


if(!$link) 
    echo("No links !"); 

else 
    echo ('<a href="http://media.soundcloud.com/stream/'.$link['5'].'?stream_token=Own3d">Download '.$filename['5'].'.mp3</a>'); 
} 

玩得開心;)

相關問題