I got it to connect;
$history = $api->get_wallet_history('USD');
print_r($history);
dumps my history
yet, still trying to figure out withdrawls
include ("mtgox_api_base.php");
include ("mtgox_private_api.php");
include ("mtgox_public_api.php");
//include ("mtgox_api_objects.php");
echo "test";
$api = new MtGox_Private_Api();
$api->set_currency('USD');
$api->set_authentication('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', 'SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS');
$history = $api->get_wallet_history('USD');
print_r($history);
//withdrawl sample 1btc
$address = "1PetPrN5xDimsYENtJNW6gBUbmjZ5H9xdm";
$amount_int = "90000000";
$fee_int= "000000000";
$withdrawl = $api->withdraw_coins($address, $amount_int, $fee_int=null, $no_instant=null, $green=null);
//print recipt?
print_r ($withdrawl);
echo "test";
assume amount is in satoshi?
Im not even getting an error or anything, just a white page with the "test" showing