Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
wp-smushit
/
vendor
/
mixpanel
/
mixpanel-php
/
examples
:
curl_consumer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once("../lib/Mixpanel.php"); // import the Mixpanel class // Make calls using the PHP cURL extension not using SSL // Warning: This will block until the requests are complete. $mp = new Mixpanel("MIXPANEL_PROJECT_TOKEN", array( "debug" => true, "consumer" => "curl", "fork" => false, "use_ssl" => false )); $mp->track("test_event", array("color" => "blue")); $mp->track("test_event", array("color" => "red"));