Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - anu

1
Issues / Re: Fatal error: Cannot redeclare str_contains()
function str_contains($needle, $haystack)
{
      return strpos($haystack, $needle) !== false;
}

Change this code

error_reporting(0);
if (strpos($haystack, $needle) !== false) {
  echo '';
}