This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#inf_custom_Date { | |
width:160px !important; | |
float:left !important; | |
display:inline !important; | |
} | |
#inf_custom_ApptHour { | |
width:100px; | |
float:right; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to the Infusionsoft API | |
require("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
// Connect the required file from HumanNameParser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>TimeDiff Calculator</title> | |
</head> | |
<body> | |
<!-- this tells the browser where and how to send the data from the form --> | |
<form action='timesheet-calc.php' method='post' enctype="multipart/form-data"> | |
Start : <input type='text' name='start'><br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* ************** | |
FUTURE- if $counter = 5, for example, add a tag for Videos Viewed = 5 and then have tag get picked up in CB to send email. | |
******************* */ | |
require("isdk.php"); | |
$myApp = new iSDK; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to the Infusionsoft API | |
require("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to Infusionsoft | |
require_once("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
// Get ContactID and email from POST variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to Infusionsoft | |
require_once("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
// Get Contact info from POST variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to Infusionsoft | |
require_once("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
// Get Contact info from POST variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to Infusionsoft | |
require_once("isdk.php"); | |
$app = new iSDK; | |
$app->cfgCon("connectionName"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to Infusionsoft | |
require_once("isdk.php"); | |
$app = new iSDK; | |
if ($app->cfgCon("connectionName")) { | |
// Connect to database |
OlderNewer