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’;

Continue reading

Posted in Tech | Tagged , , | Leave a comment

Print Array Contents

To print all contents of an array to the screen use;

print_r($array);

Posted in Tech | Tagged , | Leave a comment

Get All POST Variables

To iterate through all POST form variables, use the code below;

foreach ($_POST as $var => $value) {
echo “$var = $value”;
}

 

Posted in Tech | Tagged , | Leave a comment