开发者

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.


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


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>


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜