This file contains 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
http://phpduck.com/oop-basics-in-php-5/ | |
http://www.elated.com/articles/object-oriented-php-for-absolute-beginners/ | |
http://www.elated.com/articles/object-oriented-php-autoloading-serializing-and-querying-objects/ | |
http://www.elated.com/articles/object-oriented-php-delving-deeper-into-properties-and-methods/ |
This file contains 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
http://hungred.com/how-to/integrate-paypal-express-checkout-solution/ | |
http://leepeng.blogspot.com/2006/04/standard-paypal-php-integration.html |
This file contains 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
http://codeigniter.com/wiki/TCPDF-CodeIgniter_Integration |
This file contains 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
var months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'); | |
var shortdays = new Array('Sun','Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'); | |
var longdays = new Array('Sunday','Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'); |
This file contains 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
$saveArray = array( | |
'mc_gross' => $_POST['mc_gross'], | |
'protection_eligibility' => $_POST['protection_eligibility'], | |
'address_status' => $_POST['address_status'], | |
'payer_id' => $_POST['payer_id'], | |
'tax' => $_POST['tax'], | |
'address_street' => $_POST['address_street'], | |
'payment_date' => $_POST['payment_date'], | |
'payment_status' => $_POST['payment_status'], | |
'charset' => $_POST['charset'], |
This file contains 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
http://net.tutsplus.com/tutorials/php/9-useful-php-functions-and-features-you-need-to-know/ |
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>vTicker</title> | |
<meta name="description" content=" " /> | |
<meta name="keywords" content=" " /> | |
<style type="text/css" media="all"> |
This file contains 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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
// -------------------------------------------------------------------- | |
if(!function_exists('vardump')) | |
{ | |
function vardump($text='',$theVar) | |
{ | |
echo '<pre>'; | |
echo $text . ': '; | |
var_dump($theVar); |
This file contains 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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
// -------------------------------------------------------------------- | |
if ( ! function_exists('log_entry')) | |
{ | |
// adds the $message to $the_log | |
function log_entry($the_log, $message) | |
{ | |
$myPath = $_SERVER['DOCUMENT_ROOT'].'/system/logs/'; |
This file contains 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 | |
/** | |
* Return the return the word with inital caps | |
* | |
* @access public | |
* @param string the word | |
* @return string | |
*/ | |
if(!function_exists('pdf_file_name')) |
OlderNewer