Miguel
Miguel

Reputation: 134

HTML, CSS, JAVASCRIPT, PHP - putting it all together

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.

Upvotes: 1

Views: 3674

Answers (3)

Mika
Mika

Reputation: 1539

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

Upvotes: 1

Shakti Singh
Shakti Singh

Reputation: 86406

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>

Upvotes: 1

Mads Mogensh&#248;j
Mads Mogensh&#248;j

Reputation: 2068

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.

Upvotes: 0

Related Questions