-
Recent Posts
Twitter
- Dear Plasmarl, why is there a helicopter outside my bedroom window? 4 days ago
- Happy Star Wars day everyone! May the 4th be with you all! :o) 2 weeks ago
- Just got in from work and deliberately didn't bring laptop home. Now I'm here with no work and don't know what to do with myself! 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”;
}