ktsirig Posted September 18, 2005 Share Posted September 18, 2005 Hi, I have been messed up with array_intersect function. I have two queries sent to Mysql : Say: $query1 ='SELECT ... FROM ...'; $query2 ='SELECT ... FROM'; $result1=mysql_query($query1); $result2=mysql_query($query2); $line1 = mysql_fetch_array($result1, MYSQL_ASSOC); $line2 = mysql_fetch_array($result2, MYSQL_ASSOC); How will I use array_intersect in order to retrieve the common values of the two arrays? I seem to heve a bit of problem in the coding... Thanx a lot! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.