dhoward Admin Group
Joined: June 29 2001 Location: United States
Online Status: Offline Posts: 4447
|
Posted: November 15 2005 at 21:05 | IP Logged
|
|
|
Nothing is available yet. I havent even created a report for the video related stuff.
My intention was to allow the definition of jukebox DVD players with control similar to PowerHome's CD jukebox control. It will necessitate some database reorganizing that Ive been putting off until I get the latest batch of controllers and technology integrated.
However, that isn't to say that you couldnt use the existing video table with some PSP. Pasted below is a simple PSP page that will give you video data:
Code:
<html>
<head><title>Video Collection</title></head>
<body>
<%ph_rtne(ph_setvar_a(1,1,"") + ph_sqlselect(1,"select * from video order by 2"))%>
<%ph_rtne(ph_forloopwinc('ph_concatvar(1,1,"<p>< b>ID: </b>" + ph_getdata(1,ph_getvar_n(1,2),1) + "<br><b>Title: </b>" + ph_getdata(1,ph_getvar_n(1,2),2) + "<br><b>Summary: </b><br>" + ph_getdata(1,ph_getvar_n(1,2),10) + "</p>")',1,ph_getsqlrows(1),1,2))%>
<%ph_rtne(ph_sqldestroy(1))%>
<%ph_getvar_s(1,1)%>
</body>
</html>
|
|
|
Keep in mind that the above is very simple and can be dressed up quite a bit but gives you an idea of where to start.
Dave.
|