Jump to content

How do they do that in Web Development ???

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
5 replies to this topic

#1
sirajHassan

sirajHassan

    Newbie

  • Members
  • Pip
  • 2 posts
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 ).

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Form submissions and AJAX. w3schools.com is a great resource.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
jackolantern

jackolantern

    Learning Programmer

  • Members
  • PipPipPip
  • 47 posts
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
gokuajmes

gokuajmes

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 518 posts
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
bettylovelife

bettylovelife

    Newbie

  • Members
  • PipPip
  • 12 posts
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
bbqroast

bbqroast

    Codecall Addict

  • Members
  • PipPipPipPipPipPipPip
  • 554 posts
I didn't learn my skills in that order...
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).