17 lines
363 B
PHP
17 lines
363 B
PHP
<?php
|
|
//test-email
|
|
include 'phead.php';
|
|
include_once 'CONFIGURE.php';
|
|
include 'myfit_class.php';
|
|
$myfit_class = new myfit_class();
|
|
|
|
$data['loc'] = "38.101.241.200";
|
|
$data['sessionid'] = $session_token;
|
|
|
|
|
|
$out = array();
|
|
$ret = $myfit_class->myfit_api("test-email",$data,$out);
|
|
var_dump($data);
|
|
var_dump($out);
|
|
|
|
echo highlight_string(file_get_contents(__FILE__)); |