-
Recent Posts
Twitter
- First day in new job over! Went well, despite stressing so much that I had a headache all day. Hope tomorrow is just as good, sans ouchies. 2 days ago
- Don't like #SOPA & #PIPA? Then you're gonna hate #ACTA. Sign&Share the @accessnow petition http://t.co/svdSz0ky #StopACTA #opennet 3 weeks ago
- is the proud owner of a new touch-screen laptop! Bought it for the specs, totally didn't realise it had touch screen till I got it home! 1 month ago
Archives
Meta
Tag Archives: php
Tag Sorting PHP
To make the various tag pages on this site (eg; fanfic ship tags) I used the plugin shortcode exec php to insert the following code into a page;
$dbhost = ‘localhost’;
$dbuser = ‘dbname’;
$dbpass = ‘pass’;
$dbname = ‘dbname’;
Print Array Contents
To print all contents of an array to the screen use;
print_r($array);
Get All POST Variables
To iterate through all POST form variables, use the code below;
foreach ($_POST as $var => $value) {
echo “$var = $value”;
}