Steam api counting friends and games with PHP
Here are two handy functions to use in getting the games and friend count for a steam profile. To count the games owned amount for a steam profile use: function…
Here are two handy functions to use in getting the games and friend count for a steam profile. To count the games owned amount for a steam profile use: function…
Here is an example of the Steam GetPlayerSummaries api in work with PHP. I have made a function called summary that creates an array with the data so i can call…
To avoid injections and vulnerabilities when doing MYSQL interaction in PHP use PDO and prepared statements. It’s a bit more work but is the safest way to ensure you are…
Dark background and bright colourful fonts whats up with that? There is a few reasonings to this custom theme that i created: To be different, unique and standout. No eye…
Adobe the giant of multimedia software released Adobe portfolio early 2016, which is for designers and creators who lack web development and design to create their own fully responsive portfolio or personal…
The PHP foreach loop is the best and easiest way to iterate through an array. Here are some examples of the foreach loop. Basic PHP foreach with echo: $array =…
If you wondered how to do a new or random background image each time a web page is loaded here is how. Put the PHP script at the top of…
If you have a date time stamp and want to check it against another date time to check if its older than a certain amount of days here is how…
Have you ever wanted to quickly get a YouTube channels id quickly and simply? To do this in PHP firstly you will need PHP simple HTML DOM parser download simple_html_dom.php from…
An under used Steam api feature is getting server information such as players, map, name, location and version. Here is how to do it using DayZ mod as an example….