D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
home
/
markniuj
/
bazmeasar.com
/
pdf
/
Filename :
addpdf.php
back
Copy
<!DOCTYPE html> <html> <head> <title>Add pdf</title> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <link href="css.css" rel="stylesheet"> </head> <body> <h1>Upload PDF</h1> <form action="submit.php" method="POST" enctype="multipart/form-data"> <label for="book_name">Book Name:</label> <input type="text" name="book_name" required><br><br> <label for="book_author">Book Author:</label> <input type="text" name="book_author" required><br><br> <label for="description">Description:</label> <textarea name="description" rows="4" required></textarea><br><br> <label for="pdf_category">PDF Category:</label> <input type="text" name="pdf_category" required><br><br> <label for="pdf_file">PDF File:</label> <input type="file" name="pdf_file" accept=".pdf" required><br><br> <label for="title_cover">Title Cover:</label> <input type="file" name="title_cover" accept="image/*" required><br><br> <input type="submit" value="Upload PDF"> </form> </body> </html>