Error message
Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/tylerfra/public_html/includes/common.inc).
drupal 7.x
Drupal 6
Here is a function that you can pass an imagecache preset name and a drupal image file path to and it will try to build a derivative image from the preset name and return to you the path to the derived image:
Drupal 6 (D7 below)
Below is a helpful function that will return the allowed values list for a Drupal CCK Integer Field as an Array.
For example, here is my allowed values list for my cck integer field "field_dg_hole_tee":
Export Database to File
So today I wanted to learn how to export a Drupal database to a file quickly. Back in the day I would've logged in through cPanel and navigated to PHPMyAdmin, then manually select an export of the database and have to choose where to save the file. Not to mention all the previous steps listed would need to be preceeded by a Drupal cache flush (I don't like the cache inside a database backup). Typically this would've taken me about 5 minutes to complete, well my friends, no longer is that the case.
Drupal 7
$header = array();
$header[] = array("data" => "Column Header Title 1");
$header[] = array("data" => "Column Header Title 2");
$row = array();
$row[] = "Row Column 1 Data";
$row[] = "Row Column 2 Data";
$rows = array();
$rows[] = $row;
$html = theme('table', array('header' => $header, 'rows' => $rows));
Drupal 6
Drupal can be a memory hog, it's very hungry. Occassionally you may run out of memory when trying to enable a module or some other feature. If this happens, you'll probably see a message similar to the following
Fatal error: Allowed memory size of # bytes exhausted (tried to allocate # bytes) in includes/database.mysqli.inc
To fix this problem, I opened my sites/default/settings.php and added the following php ini setting:
Pages