↧
Search a Multidimensional Array
Searching a PHP array was not as simple as I had thought. Sure, you can use array_search() but that only finds one value off an array the last time I tried it out. I needed something to search a...
View ArticleRefresh / Redirect with PHP
We know how to use the Refresh meta tag in our <head> tags. But what if we needed to do the same thing, only this time, do it in PHP? We can use PHP’s header() function We can redirect or refresh...
View Article