I am really new to php and am attempting to create a news reader on my site.
I have gotten it running just fine in a page of its own, BUT, I need it to be inside a php include. How do I link different scripts and stylesheets in the "body" as opposed to the head?
I feel like this is really simple, but I am just not sure of the syntax.
How do I take this code from the head and make it work in the body?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="ncahd-main.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="../js/jquery.zrssfeed.min.js" type="text/javascript"></script>
<title>TEST</title>
</head>
<body>
<h1>RSS</h1>
<script type="text/javascript">
$(document).ready(function () {
$('#test').rssfeed('..news.xml', {
limit: 3
});
});
</script>
<div id="test"></div>
</body>
</html>