Hello All
I have a simple php array, For Example:
$numbers=array("12345","65432","98765");
And SQL Table named: "phones" with the column "TNumbers" and the rows: 654654, 12345, 87878.
Now, What will be the fastest way to return all the values from the array that exist in the SQL server table? (So it should return only this: ("12345"))
Thank you Very Much!!