用表格数据填写网页模板[关闭]

I have a webpage template already designed and coded, I also have a form in which i would like to fill in the designated areas of this template, can anyone please point me in the right direction... Thanks

Here is the template:

http://www.rockingitmixtapes.com/mixtape-template-page.html

& and here is the form:

http://rockingitmixtapes.com/upload-form.html

I'm assuming this is the type of data that needs to be continually updated and stored permanently on your server. If this is true, I would consider storing the data from your web form to a database such as a mySQL database after submission. You will need to utilize PHP scripts server side.

http://php.net/manual/en/book.mysqli.php

On the web pages which display the information, you'll have to make calls for the information you need in the appropriate HTML divs. You will likely have to learn how to install mySQL as well as query syntax.

http://dev.mysql.com/doc/refman/5.7/en/

Also this previous question's top rated answer outlines the basics of how to go about starting this process. Good tutorial on how to update your Mysql database with a PHP form?