lang="en-US"> PHP – Page 3 –  Design1online.com, LLC

Tagged: PHP

0

Cheat Sheet: ASP & PHP Cross Reference

I found this cool site that has examples cross-referencing PHP and ASP so you can see the difference (or use it if you’re switching from one language to the other). They also have a...

0

PHP Functions: Wiggle, Wobble, Squibble & Swipswap

Here are a few fun functions for word games, word scrambling and just plain word craziness. <?php /*********** * Purpose: move a certain letter to a certain position * Precondition: word, letter to move,...

1

PHP Tutorial: Dynamically Create an Email Address in CPanel

This assumes you have cPanel and permission to run the /scripts/addpop command. You’ll need to write functions for validateUsername, validatePassword, and usernameExists or you can click on the links for each of those and...

1

PHP Tutorial: Mixing HEX Colors

<?php /**************** * Purpose: mix two colors together * Precondition: two colors in hex RGB format * Postcondition: a single color returned that’s the combo of the two ****************/ function mixcolors($color1, $color2) { $c1_p1...

2

PHP Tutorial: Get Filename From Domain Path

<?php /**** * Purpose: get the filename from the path * Precondition: path i.e. http://domain.com/contacts.php * Postcondition: returns the filename i.e. contacts.php ****/ function fileName($path) { return substr($path, strrpos($path, ‘/’)+1, strlen($path)); } ?> Programming...

0

PHP Tutorial: Format Dates Taking Country Into Consideration

<? /************** * Purpose: Format dates with country in consideration * Precondition: 2 letter country code the individual is from * Postcondition: date is reformatted for that country * Note: all available country abbreviations...