Profile
Achievement

xtheonex's Recent Snippets
- All /
« Prev 1 Next »
A lovely little one liner that strips out all non alphanumeric chars first, then replaces the spaces with hyphens, then converts all to lowercase :D
0
997
posted 16 years ago by xtheonex
This is a basic shell for PayPal IPN.
It is by no means a complete solution, but it should provide a good starting point for anyone that wants to work out IPN.
Or it can be used as is to do basic IPN.
2
1114
posted 16 years ago by xtheonex
I use this snippet to force a number to 2 decimal places.
Eg, For prices, PHP rounds the number 22.20 to 22.2. This code forces a zero on the end if there isn't 2 decimal places already.
1
1318
posted 16 years ago by xtheonex
This little piece of code will convert to US phone format, as typed.
Eg, As the number "0000000000" was typed, it would convert it to (000)-000-0000.
6
4315
posted 16 years ago by xtheonex
Function to return the current page name, without the location of it...
Eg, for the URL http://localhost/www/someproject/index.php, this would return index.php
1
1044
posted 16 years ago by xtheonex
A quick, usefull function which i use to convert a date/time string pulled from MySQL, into a readable format.
1
1258
posted 16 years ago by xtheonex
This is by no means the most efficient way to do this, in terms of performance.
It is however the easiest way.
1
1263
posted 16 years ago by xtheonex