Hello, I am trying to code a page on my WordPress which allows a user to upload their own character, with the following fields: Name - Character Name; Unique Age - Numeric Gender - Boolean Height - Numeric Weight - Numeric Bio - Long Text Box Likes - Long Text Box Dislikes - Long Text Box Race - Text Pic1 - Image file, to be uploaded to /characters/images/(name1).jpg Pic2 - Image file, to be uploaded to /characters/images/(name2).jpg Pic3 - Image file, to be uploaded to /characters/images/(name3).jpg Each entry needs to be approved by an Administrator, or declined, at which time it should be accessible at /characters/(name) - I guess this access point would actually be /characters/character.php?character=(name) and changed with htaccess? In addition, search by Name, Age, Height, Weight and Gender should be available, as well as the ability for the submitting member to be able to edit their entry. Thanks to anyone who can help. EDIT: I am using MySQL to store data.