where is your insert statement? I am guessing it is after your loop

if ( is_array( $_SESSION['l_industry'] ) ) {
        foreach ( $_SESSION['l_industry'] as $p ) {
                $query = "INSERT INTO Profiles_Industries (ProfileID,IndID) VALUES
($LID, $p)";
/********************This is where your insert statement should
be**********************/
        } //foreach ( $_SESSION['l_industry'] as $p )
} //if ( is_array( $_SESSION['l_industry'] ) )

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to