I finally muddled through it and figured out the proper Syntax. PHP is not very forgiving to horrible typist like myself. 
Here is an example PHP function that updates an mySQL database:
function PutAbilitiez()
{
$gameName = $_POST[ 'gameName' ];
$playerPassword = $_POST[ 'playerPassword' ];
$sex = $_POST[ 'sex' ];
$bodyType = $_POST[ 'bodyType' ];
$skinType = $_POST[ 'skinType' ];
$firstName = $_POST[ 'firstName' ];
$lastName = $_POST[ 'lastName' ];
$age = $_POST[ 'age' ];
$playerEmail = $_POST[ 'playerEmail' ];
////////////////////////////////////////////////////////////////////////////
//
// ABILITY SCORES
//
////////////////////////////////////////////////////////////////////////////
$strength = $_POST[ 'strength' ];
$strengthMax = $_POST[ 'strengthMax' ];
$agility = $_POST[ 'agility' ];
$agilityMax = $_POST[ 'agilityMax' ];
$dexterity = $_POST[ 'dexterity' ];
$dexterityMax = $_POST[ 'dexterityMax' ];
$stamina = $_POST[ 'stamina' ];
$staminaMax = $_POST[ 'staminaMax' ];
$health = $_POST[ 'health' ];
$healthMax = $_POST[ 'healthMax' ];
$intelligence = $_POST[ 'intelligence' ];
$intelligenceMax = $_POST[ 'intelligenceMax' ];
$comprehension = $_POST[ 'comprehension' ];
$comprehensionMax = $_POST[ 'comprehensionMax' ];
$psyche = $_POST[ 'psyche' ];
$psycheMax = $_POST[ 'psycheMax' ];
$mana = $_POST[ 'mana' ];
$manaMax = $_POST[ 'manaMax' ];
$lastPosX = $_POST[ 'lastPosX' ];
$lastPosY = $_POST[ 'lastPosY' ];
$lastPosZ = $_POST[ 'lastPosZ' ];
////////////////////////////////////////////////
$anchorHead = $_POST[ 'anchorHead' ];
$anchorLeftHand = $_POST[ 'anchorLeftHand' ];
$anchorRightHand = $_POST[ 'anchorRightHand' ];
$anchorChest = $_POST[ 'anchorChest' ];
$anchorPelvis = $_POST[ 'anchorPelvis' ];
$anchorRightBicep = $_POST[ 'anchorRightBicep' ];
$anchorRightForeArm = $_POST[ 'anchorRightForeArm' ];
$anchorRightWrist = $_POST[ 'anchorRightWrist' ];
$anchorLeftBicep = $_POST[ 'anchorLeftBicep' ];
$anchorLeftForeArm = $_POST[ 'anchorLeftForeArm' ];
$anchorLeftWrist = $_POST[ 'anchorLeftWrist' ];
$anchorRightThigh = $_POST[ 'anchorRightThigh' ];
$anchorRightCalf = $_POST[ 'anchorRightCalf' ];
$anchorRightAnkle = $_POST[ 'anchorRightAnkle' ];
$anchorLeftThigh = $_POST[ 'anchorLeftThigh' ];
$anchorLeftCalf = $_POST[ 'anchorLeftCalf' ];
$anchorLeftAnkle = $_POST[ 'anchorLeftAnkle' ];
$defaultHair = $_POST[ 'defaultHair' ];
////////////////////////////////////////////////
$XPstrength = $_POST[ 'XPstrength' ];
$XPagility = $_POST[ 'XPagility' ];
$XPdexterity = $_POST[ 'XPdexterity' ];
$XPstamina = $_POST[ 'XPstamina' ];
$XPhealth = $_POST[ 'XPhealth' ];
$XPintelligence = $_POST[ 'XPintelligence' ];
$XPcomprehension = $_POST[ 'XPcomprehension' ];
$XPpsyche = $_POST[ 'XPpsyche' ];
$XPmana = $_POST[ 'XPmana' ];
////////////////////////////////////////////////
$hitPoints = $_POST[ 'hitPoints' ];
$hitPointsMax = $_POST[ 'hitPointsMax' ];
$basePhyAtk = $_POST[ 'basePhyAtk' ];
$basePhyDef = $_POST[ 'basePhyDef' ];
$baseShotAtk = $_POST[ 'baseShotAtk' ];
$baseMenAtk = $_POST[ 'baseMenAtk' ];
$baseMenDef = $_POST[ 'baseMenDef' ];
$speedMod = $_POST[ 'speedMod' ];
////////////////////////////////////////////////////////////////////////////
// The DATABASE NAME is fw
// $SQL = "SELECT * FROM players WHERE gameName = ' " . $gameName . " ' AND playerPassword = ' " . $playerPassword . " ';";
// mysql_query( $SQL ) or die( mysql_error() );
$query = "UPDATE players SET strength = '" . $strength . "', strengthMax = '" . $strengthMax . "',
agility = '" . $agility . "', agilityMax = '" . $agilityMax . "',
dexterity = '" . $dexterity . "', dexterityMax = '" . $dexterityMax . "',
stamina = '" . $stamina . "', staminaMax = '" . $staminaMax . "',
health = '" . $health . "', healthMax = '" . $healthMax . "',
intelligence = '" . $intelligence . "', intelligenceMax = '" . $intelligenceMax . "',
comprehension = '" . $comprehension . "', comprehensionMax = '" . $comprehensionMax . "',
psyche = '" . $psyche . "', psycheMax = '" . $psycheMax . "',
mana = '" . $mana . "', manaMax = '" . $manaMax . "',
lastPosX = '" . $lastPosX . "', lastPosY = '" . $lastPosY . "',
lastPosZ = '" . $lastPosZ . "', anchorHead = '" . $anchorHead . "',
anchorLeftHand = '" . $anchorLeftHand . "', anchorRightHand = '" . $anchorRightHand . "',
anchorChest = '" . $anchorChest . "', anchorPelvis = '" . $anchorPelvis . "',
anchorRightBicep = '" . $anchorRightBicep . "', anchorRightForeArm = '" . $anchorRightForeArm . "',
anchorRightWrist = '" . $anchorRightWrist . "', anchorLeftBicep = '" . $anchorLeftBicep . "',
anchorLeftForeArm = '" . $anchorLeftForeArm . "', anchorLeftWrist = '" . $anchorLeftWrist . "',
anchorRightThigh = '" . $anchorRightThigh . "', anchorRightCalf = '" . $anchorRightCalf . "',
anchorRightAnkle = '" . $anchorRightAnkle . "', anchorLeftThigh = '" . $anchorLeftThigh . "',
anchorLeftCalf = '" . $anchorLeftCalf . "', anchorLeftAnkle = '" . $anchorLeftAnkle . "',
defaultHair = '" . $defaultHair . "', XPstrength = '" . $XPstrength . "',
XPagility = '" . $XPagility . "', XPdexterity = '" . $XPdexterity . "',
XPstamina = '" . $XPstamina . "', XPhealth = '" . $XPhealth . "',
XPintelligence = '" . $XPintelligence . "', XPcomprehension = '" . $XPcomprehension . "',
XPpsyche = '" . $XPpsyche . "', XPmana = '" . $XPmana . "',
hitPoints = '" . $hitPoints . "', hitPointsMax = '" . $hitPointsMax . "',
basePhyAtk = '" . $basePhyAtk . "', basePhyDef = '" . $basePhyDef . "',
baseShotAtk = '" . $baseShotAtk . "', baseMenAtk = '" . $baseMenAtk . "',
baseMenDef = '" . $baseMenDef . "', speedMod = '" . $speedMod . "'
WHERE gameName = '" . $gameName . "' AND playerPassword = '" . $playerPassword . "'";
mysql_query( $query ) or die( mysql_error() );
}