morge2003 Posted November 25, 2007 Share Posted November 25, 2007 Hi there, im creating a music streaming website but have come up with a problem, when i call for the music from database, they all play at the same time, i have tried using autostart = false but that doesnt seem to work, please can someone help? echo "<table border=1>\n<tr>" . "<th>No</th>" . "<th>Title</th>" . "<th>Artist</th>" . "<th>Image</th>" . "<th>Music</th>". "</tr>"; while ($row = @ mysql_fetch_array($result)) { echo "<tr>" . "<td>" . $row["no"] . "</td>" . "<td>" . $row["title"] . "</td>" . "<td>" . $row["artist"] . "</td>" . "<td><img src= ".$row["image_name"]." ></td>" . "<td><embed src= ". $row["music"]."></td>" . "</tr>"; } <table> echo "</table>"; } echo mysql_num_rows($result). " records found matching your criteria<br>"; mysql_close($connection); ?> Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted November 25, 2007 Share Posted November 25, 2007 you should look into a flash player solution.... Quote Link to comment Share on other sites More sharing options...
Stef Posted February 27, 2013 Share Posted February 27, 2013 it can be perfectly done with php and the proper code. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.