1

I'm new to web development, I know some javascript, html, css and I'm learning php. The problem is that I don't find good resource on how to put it all together.

Any recommendation will be appreciated.

1
  • Well. The problem is (was for me) the learning curve. Having read books that tries to put js html php sql together (even books html-css together). Has for me been. A total waste of time. Focus on sources (books, web) that does one thing only and does it well and throughout is more time efficient. Commented Jun 21, 2012 at 0:23

3 Answers 3

1

You can look in this list-of-freely-available-programming-books here on SO for further information.

1

Assuming "putting it all together" means in single page

<html>
<head>
<style>
//css here
</style>
<script language="javascript">
//js here
</script>
</head>
<body>
   <h1>first page</h1>
   <?php
     //php code here
   ?>
</body>
</html>
1
  • Good sense of humor, I'll give you that. Commented Jun 20, 2012 at 13:52
0

Besides looking around Google (or similar) for tutorials, you can pick up a beginners book. We used Learning PHP, MySQL, and JavaScript in a class I was a TA in, it's pretty good for learning the basics of web dev.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.