Jump to content
  • 0

Создание карты кликов


AstIIL
 Share

Question

Добрый день, пробую сделать карту кликов для сайта по данному уроку: http://css-tricks.com/tracking-clicks-buil...php-and-jquery/

сделал все как написано.

установил денвер, создал бд

название бд:db_click

имя пользователя: db

password:222

создал таблицу:

CREATE TABLE  `clickmap` (
`id` int(10) unsigned NOT NULL auto_increment,
`x` smallint(4) unsigned NOT NULL,
`y` smallint(4) unsigned NOT NULL,
`location` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `location` (`location`)
)

далее есть php скрипт, который и должен записывать данные в бд:

<?php
$DB = mysql_connect("localhost", "db", 222");
mysql_select_db("db_click", $DB);

if (isset($_POST['l'])) {
$query = sprintf(" INSERT INTO clickmap
SET x = '%s', y = '%s', location = '%s'",
$_POST['x'], $_POST['y'], $_POST['l']);
$result = mysql_query($query);
};

if (isset($_GET['l'])) {
$query = sprintf(" SELECT x, y FROM clickmap
WHERE location = '%s'
ORDER BY id DESC
limit 200",
$_GET['l']);
$results = mysql_query($query);

$html = '<div id="clickmap-container">';
while ($row = mysql_fetch_array($results)) {
$html .= sprintf('<div style="left:%spx;top:%spx"></div>', $row['x'] - 10, $row['y'] - 10);
}
$html .= '</div>';

echo $html;
};

mysql_close($DB);
?>

теперь, когда пытаюсь зайти на страницу сайта, что бы проверить, выскакивает окно с просьбой ввести имя пользователя и пароль, ввожу все что указывал при создании бд -- не пускает, если нажать отмена то выдает следующее сообщение на странице:

Authorization Required

This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.
Apache/2.0.63 (FreeBSD) PHP/5.3.2 with Suhosin-Patch Server at click.ru Port 80

ЗЫ. если можно, перенесите плз тему в раздел бд, а то у меня там не получилось создатью

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Денвер на фряхе, вот это сюрреализм.

Я думаю, надо отключить запрос авторизации. Тем более, здесь эта часть кода не представлена. Да и почему пароль от mysql? Он тут при чём?

Edited by Int
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy