Добрый день.
Есть html страница на которую хочу вывести простенький чат php.
Переходя по адресу кидает на сам сайт (так и должно быть :)), когда пишем домен/EXAMPLE.php выводит этот чат (что по сути верно).
Файл example.php:
<?php
session_start();
?>
<html>
<head>
<title>ShoutCloud By KNGKHMR</title>
<link type="text/css" rel="stylesheet" href="shoutcloud/ShoutCloud-Night.css" media="screen">
<script type="text/javascript"src="shoutcloud/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="shoutcloud/ShoutCloud-min.js"></script>
</head>
<body>
<?php
include('shoutcloud.php');
?>
<body>
</html>
В index.html добавляю:
<head>
<link type="text/css" rel="stylesheet" href="shoutcloud/ShoutCloud-min.css" media="screen">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="shoutcloud/ShoutCloud-min.js"></script>
</head>
Пытаюсь вставить в index.html <?php include('shoutcloud.php'); ?> но не выходит :)
Я в этот деле дубушка:))))