Exemplo n.º 1
0
	Now show the customer rows
*/
$sql = "SELECT DISTINCT customer_id FROM responses WHERE survey_id='{$survey_id}'";
$result = db_query($sql);
$rows = db_numrows($result);
for ($i = 0; $i < $rows; $i++) {
    /*
    	Get this customer's info
    */
    $sql = "SELECT DISTINCT cust_id,first_name,people.last_name,people.email,people.email2,people.phone," . "people.beeper,people.cell,people.yes_interested,responses.response_year," . "responses.response_month,responses.response_day FROM people,responses " . "WHERE cust_id='" . db_result($result, $i, "customer_id") . "' AND cust_id=responses.customer_id";
    $result2 = db_query($sql);
    if (db_numrows($result2) > 0) {
        $cols = db_numfields($result2);
        for ($i2 = 0; $i2 < $cols; $i2++) {
            echo strip_commas(db_result($result2, 0, $i2)) . ",";
        }
        /*
        	Get this customer's responses. may have to be ordered by original question order
        */
        $sql = "SELECT response FROM responses WHERE customer_id='" . db_result($result, $i, "customer_id") . "' AND survey_id='{$survey_id}'";
        $result3 = db_query($sql);
        $rows3 = db_numrows($result3);
        for ($i3 = 0; $i3 < $rows3; $i3++) {
            echo strip_commas(db_result($result3, $i3, "response")) . ",";
        }
        /*
        	End of this customer
        */
        echo "\n";
    }
}
Exemplo n.º 2
0
	Now show the customer rows
*/
$sql = "SELECT DISTINCT customer_id FROM responses WHERE survey_id='" . db_ei($survey_id) . "'";
$result = db_query($sql);
$rows = db_numrows($result);
for ($i = 0; $i < $rows; $i++) {
    /*
    	Get this customer's info
    */
    $sql = "SELECT DISTINCT cust_id,first_name,people.last_name,people.email,people.email2,people.phone," . "people.beeper,people.cell,people.yes_interested,responses.response_year," . "responses.response_month,responses.response_day FROM people,responses " . "WHERE cust_id='" . db_ei(db_result($result, $i, "customer_id")) . "' AND cust_id=responses.customer_id";
    $result2 = db_query($sql);
    if (db_numrows($result2) > 0) {
        $cols = db_numfields($result2);
        for ($i2 = 0; $i2 < $cols; $i2++) {
            echo $purifier->purify(strip_commas(db_result($result2, 0, $i2))) . ",";
        }
        /*
        	Get this customer's responses. may have to be ordered by original question order
        */
        $sql = "SELECT response FROM responses WHERE customer_id='" . db_ei(db_result($result, $i, "customer_id")) . "' AND survey_id='" . db_ei($survey_id) . "'";
        $result3 = db_query($sql);
        $rows3 = db_numrows($result3);
        for ($i3 = 0; $i3 < $rows3; $i3++) {
            echo $purifier->purify(strip_commas(db_result($result3, $i3, "response"))) . ",";
        }
        /*
        	End of this customer
        */
        echo "\n";
    }
}