поэтому у меня есть файл PHP следующим образом (полный файл, включая HTML):
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style type="text/css">
.content {
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
}
.text-align{
text-align: center;
}
.button-position{
float:right;
width:120px;
}
</style>
<?php
require 'mixpanel-php/lib/Mixpanel.php';
require 'vendor/autoload.php';
// get the Mixpanel class instance, replace with your project token
$mp = Mixpanel::getInstance("My token goes here...");
// track an event
$mp->track("button clicked", array("label" => "sign-up"));
?>
</head>
<body>
<form method="post" action="Register.php">
<input type="hidden" value="true" name="submitted">
<div class="container content" >
<h2 class="text-align">MixPanel registration</h2>
<div class="form-group">
<input type="text" name="txtUsername" class="form-control form-group" placeholder="Enter username...">
<input type="password" name="txtPassword" class="form-control form-group" placeholder="Enter password...">
<input type="password" name="txtPasswordConfirmation" class="form-control form-group" placeholder="Enter password confirmation...">
<input type="submit" class="btn btn-primary button-position" value="Register">
</div>
</div>
</form>
</body>
</html>
После нажатия кнопки данные сохраняются в БД … Второе, что я должен сделать, это отправить данные на панель Mix, как только пользователь зарегистрируется … Я включил каждую библиотеку в проект (используя Студия Zend) … Но когда я захожу в «Просмотр в реальном времени» на своей панели миксов, я не получаю никаких отчетов, зарегистрированных пользователем … Что я здесь не так делаю?
Задача ещё не решена.
Других решений пока нет …