Looks for the word Clicks in the posted values….
1 2 3 4 5 6 |
if (in_array("Clicks", $_POST['columns'])) { echo "Match found"; } |
and for a normal array
1 2 3 4 5 6 |
if (in_array("Clicks", $myarray)) { echo "Match found"; } |
Looks for the word Clicks in the posted values….
1 2 3 4 5 6 |
if (in_array("Clicks", $_POST['columns'])) { echo "Match found"; } |
and for a normal array
1 2 3 4 5 6 |
if (in_array("Clicks", $myarray)) { echo "Match found"; } |
© 2022 CODEHAVEN