Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /nfs/home/london7/public_html/remax-us/firepay.php
// select all info for pending customer
$sqlCustomer = "SELECT * FROM PendCustomer WHERE clientID = \"".$_POST["clientID"]."\"";
if($pendCustomerQuery = mysql_query($sqlCustomer) && $errorCheck)
{
//user exists-- error is on this line
list($_SESSION['clientIDPend'],$_SESSION['companyIDPend'],$_SESSION['firstPend'],$_SESSION['middlePend'],$_SESSION['lastPend'],$_SESSION['titlePend'],$_SESSION['mobilePend'],$_SESSION['emailPend'],$_SESSION['photoPend'],$_SESSION['personalPend'],$_SESSION['programPend'],$_SESSION['passwordPend'],$_SESSION['productPend'],$_SESSION['versionPend'],$_SESSION['trialLengthPend'],$_SESSION['expiryDatePend'],$_SESSION['subDirectoryPend'],$_SESSION['primaryPend'],$_SESSION['statusPend'],$_SESSION['linkPend'],$_SESSION['userNotesPend'],$_SESSION['paidPend'],$_SESSION['datePend']) = mysql_fetch_row($pendCustomerQuery);
the error is on the long line...the mysql_fetch_row
can anyone help?