I'm planning on making a website that will have mainly articles and videos. I'm going to post the videos on YouTube and use the YouTube API on my site. What I am wondering, is if I can make a page like this without using any server-side technology, or if I would need server-side programming(PHP, MySQL, etc...) would it be very much? I'm new to web development and as a first webpage, I was hoping to do the whole thing with Client-side technologies(HTML, CSS, JavaScript). Is this feasible?
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
No, because you're dealing with data retrieval and manipulation. I mean client-side scripting is responsible for displaying data and intermediary between browser(front-end) and database(back-end). It is also handles browser functions such as alerts, effects, embedding objects, and etc. Data retrieval and manipulation is handled by server-side scripting such as PHP, Perl, Ruby on Rails, ColdFusion, ASP, and etc. BTW, I strongly encourage you to learn PHP and AJAX(Asynchronous Javascript and XML). Here is a link which helped me to learn to use youtube API: |
|||||||||||||||||||
|