I think the issues lies somewhere here in the video_albums table, in the javascript:
document.getElementById('videoName').value = VideoDataArray[0];
document.getElementById('videoDescription').value = VideoDataArray[1];
and maybe here too:
[php]while( $row = mysql_fetch_row($results) ) {
print “<OPTION VALUE=’” . $row[1] . “|” . $row[3] . “’” . “>” . $row[1] . “\n”; //NOTE: row(1) is videoname row(3) is descriptions field
}
print “<OPTION VALUE=“Enter a NEW VIDEO NAME here…|VIDEO DESCRIPTION goes here…”>Add New Video!\n”;[/php]