I am a new bie here and also in Web design and development world. I know what HTML and CSS is and what actually Php does in websites as a beginner :).
My question is actually related to the user interface part of the website. How do web application developers ( Programmer, designers ) actually integrate business logic implemented via Php into the websites which uses HTML, CSS, JavaScript.
Actually i want to ask how all the technologies merge into the single website.
Where can i learn all merging Php code with HTML, CSS, JavaScript or any other technology used making user interface?.
Any resources u can point out? ebooks, tutorials ?
I am not curious (at the moment let's say i have all the graphics to be used in the website ) abuot the graphics content which do add significant look and feel.
So now question becomes simple how do technologies merge ( HTML, CSS, JavaScript, Php, Ajax ).
How do they do that in Web Development ???
Started by sirajHassan, Aug 23 2010 10:38 AM
5 replies to this topic
#1
Posted 23 August 2010 - 10:38 AM
|
|
|
#2
Posted 23 August 2010 - 03:35 PM
Form submissions and AJAX. w3schools.com is a great resource.
#3
Posted 27 August 2010 - 12:23 AM
Most people learn the required skills in this order: HTML >> CSS >> Javascript >> PHP. Most learning resources (web tutorials, books, videos, etc.) assume that is the path you learn them in, and each one shows you how to merge the new skill in with what you already know. For example, CSS assumes you know HTML and naturally shows you how to work it in to your HTML. Javascript assumes you know the two previous, and shows how to work JS into them. PHP and JS do not typically mingle much outside of AJAX techniques, which are also well-documented.
#4
Posted 27 August 2010 - 02:40 AM
Well just want to tell you that on your way to mastering Php you will certainly get the essence on how to style with css and HTML, until then try learning about using J Query and Ajax without these technology it is hard to Develop a responsive site these days
#5
Posted 09 September 2010 - 07:14 PM
It is a gradual step and needs a lot of practice. One of my friends got this skill in the order of HTML -CSS -Javascript - PHP. During the process, the info from the Internet can do a great help.
#6
Posted 26 September 2010 - 11:10 AM
I didn't learn my skills in that order...
If you mean intergrating them you need to think logically heres in example:
All the user will see if script was 'dothis(NOW)' would be
If you mean intergrating them you need to think logically heres in example:
<?php $script = $_POST['script']; echo "<script type='javascript'> $script </script>"; ?>Php will get 'script' from the post method. Then it will echo it in a javascript script (i don't know javascript).
All the user will see if script was 'dothis(NOW)' would be
<script type='javascript'> dothis(NOW) </script>
Please, write clearly with proper structure. Double spacing makes the text feel un-jointed, Capitalizing Every Word Means People Stop Before Every Word Sub-Consciously Which Is A Pain In The Backside, and use code tags! (The right most styling box).


Sign In
Create Account

Back to top









