What languages would one need to know to do something like this? [closed]
I want to be able to make like.. grids, or spreadsheets, etc.. here are a couple examples..
http://killgrid.com/grid/325
http://demo.warsheet.com/
I want to create 开发者_StackOverflow中文版a site somewhat similar to those, I would allow users to sign up and create spreadsheets with custom IDs that the owner of the spreadsheet adds through an admin panel..
I write php, but I know that wont be enough to create the website, what would be used to create the design of the spreadsheet and such?
All answers are appreciated.. if you guys could just point me in the right direction, that would be great!
HTML, images, CSS, and bit of javascript is great combination for this purpose
HTML, and CSS. Those two "languages" combined will allow you to create web pages. By applying HTML "tables", you can create the kinds of "grids" or "spreadsheets" that you showed. Using your PHP skills as well, you will be able to create dynamic tables which change based on your data.
Tutorial: http://dev.opera.com/articles/view/1-introduction-to-the-web-standards-cur/#toc
I suggest that you do the HTML one (first link) first.
Hope that helps,
-Sunjay03
There's nothing special about the pages you link to. To describe the structure of tabular data in HTML, use tables. You'll need forms to capture the data (and something to process and store the data on the server (a programming language and a database). Then apply CSS for the colour scheming. You don't even need client side JS for this.
精彩评论