Skip to content

Instantly share code, notes, and snippets.

@drnikki
Created March 30, 2012 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drnikki/2254721 to your computer and use it in GitHub Desktop.
Save drnikki/2254721 to your computer and use it in GitHub Desktop.
block id
text
text
<a href="
<?php
$url = current_path();
explode('/', $url);
var_dump($url);
if(is_numeric($url[1])) {
 $nid = $url[1];
echo "node/add/resume?=jobxyz=" . $nid;
} else {
echo "node/add/resume";
}
?>
" class = 'blah blah'
.
.
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment