Hi I have a list varchar, for example:
1, 2, 3, 4
2, 3, 4, 5
4, 5, 6, 6
i want to do sth when i find the number 3 in php but my code wont' work.. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=20408&image=1&table=forumtopics' class='bbc_emoticon' alt=':(' />
$finder3 = $values["patenti"]; //get the string
$finder4 = strstr($finder3, '3');
$finder5 == substr($finder4, 0, 1);
if ($write==27 and $finder5 ==3)
...
whre is my mistake? <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=20408&image=2&table=forumtopics' class='bbc_emoticon' alt=':(' />