[wd_asp elements=’search’ ratio=’100%’ id=1]

Find text in Array ($POST – variables)

20th January 2015

Jquery - Forms-Posting

jquery icon

Looks for the word Clicks in the posted values….
if (in_array("Clicks", $_POST['columns']))
{
echo "Match found";
}

and for a normal array
if (in_array("Clicks", $myarray))
{
echo "Match found";
}