Abraham Garcia in Javascript/jQuery   Monday, September 11 2017

jQuery Validation Without Form Submit

Short tutorial on how to submit a form without the submit button. This is using the valid function within the jquery validate plugin

This is an example on how to submit a form without actually clicking on the submit form. Useful in many applications. This is using the jQuery Validation Plugin. $(document).ready(function() { $("#test").validate({

Continue reading
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