/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// php has no "in_string" function, so here's one... function in_string($needle, $haystack, $insensitive = 0) { if ($insensitive) { } else { } }