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.
精彩评论