A
avsrule247
Guest
There isn't just one piece of code for this. It can be done with a number of scripting languages but it sounds like it most definitely uses a MySQL database which we cannot just be copy and pasted.
The way I would do it is learn how to add, delete and modify quarries in MySQL using PHP. What you basically want to do is create a button that (using PHP) sends a query to your database to add the name of the video, the location, and date it was submitted. Then when you log in the admin panel it displays (reads) the list of entries in the database. Then you bring up a form that you can fix the link in and send it back to the database (modify) so the link is no longer broken.
You can also do it with a simple PHP script that writes the name of the video to a txt file, so next time you log in it just displays the information in the txt file. Although this is less convenient but a lot easier to code.
I would suggest this website http://www.tizag.com/ for all your php and MySQL needs.
The way I would do it is learn how to add, delete and modify quarries in MySQL using PHP. What you basically want to do is create a button that (using PHP) sends a query to your database to add the name of the video, the location, and date it was submitted. Then when you log in the admin panel it displays (reads) the list of entries in the database. Then you bring up a form that you can fix the link in and send it back to the database (modify) so the link is no longer broken.
You can also do it with a simple PHP script that writes the name of the video to a txt file, so next time you log in it just displays the information in the txt file. Although this is less convenient but a lot easier to code.
I would suggest this website http://www.tizag.com/ for all your php and MySQL needs.