-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathREADME
28 lines (19 loc) · 1.22 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Snippets
Copyright (c) 2011, Dave Shea
All rights reserved.
http://mezzoblue.com/
A set of reusable snippets from my personal collection, mostly for my own reference.
Perhaps you'll find something useful or interesting. A lot of the code could be cleaned up and improved in a lot of ways, don't go looking for stellar coding practices in here.
Contents:
Javascript
|-- smooth-random-int: simple function to return non-repeating random integers (available as PHP too)
PHP
|-- form-to-email: generic configurable form that posts to email
|-- mysql-backup: backup and restore a MySQL database to a flat file. (Specialized version of mysql-helper)
|-- mysql-helper: functions for controlling database creation with PHP
|-- random-daily: simple function to return a different random integer once per day
|-- random-smooth: simple function to return sequential non-repeating random integers (available as Javascript too)
|-- random-unique: simple function to return an array of non-repeating random integers
Wordpress
|-- subnav-post-keys.php: create a nav listing using a custom field as the page title
|-- wordpress-server-transfer: a set of scripts to facilitate easier Wordpress server transfers. (Customized version of PHP/mysql-backup)