Abraham Garcia in PHP Scripts   Wednesday, August 2 2017

PHP Function to Get Client IP Address

A small function to retrieve the ip address of the user. This uses the PHP Server Method.

This is a function on how to retrieve users ip address. Use this for you projects. function get_client_ip() { $ipaddress = ''; if (isset($_SERVER['HTTP_CLIENT_IP'])) $ipaddress = $_SERVER['HTTP_CLIENT_IP']; else if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) $ipaddress

Continue reading
Abraham Garcia in Fun Stuff   Sunday, July 16 2017

4 Ways to Reduce Powerpoint Size

This is a short list on how to reduce powerpoint size. Allowing you to transfer your presentations via email.

1. Use PPTX Format Rather than PPT Format.  Using the PPTX format is smaller and can reduce your powerpoint size.  2. Export the File as a PDF 3. Instead of

Continue reading
Abraham Garcia in Web Design   Saturday, July 15 2017

5 Web Designs Trends for 2017

Web Design is constantly changing, but here is a list of 5 web design trends that we believe will stick for a couple of years.

1. Layouts that Let Content Shine Design has become very flat now and we expect 2017 to continue in this conversation with minimalistic layouts that let content shine.  2. Big

Continue reading