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.
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.
tries to put js html php sql
together (even bookshtml-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 throughoutis more time efficient
.