D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
vedios
/
Filename :
add_vedios.php
back
Copy
<!DOCTYPE html> <html> <head> <title>Add Video</title> </head> <body> <h2>Add Video</h2> <form action="insert_video.php" method="post"> <label for="title">Title:</label> <input type="text" id="title" name="title" required><br><br> <label for="description">Description:</label> <textarea id="description" name="description" rows="4" required></textarea><br><br> <label for="youtube_link">YouTube Link:</label> <input type="text" id="youtube_link" name="youtube_link" required><br><br> <label for="category_id">Category ID:</label> <input type="number" id="category_id" name="category_id" required><br><br> <label for="upload_date">Upload Date:</label> <input type="date" id="upload_date" name="upload_date" required><br><br> <input type="submit" value="Add Video"> </form> </body> </html>