Footnote creation snippet

This is a discussion on "Footnote creation snippet" within the PHP Forum section. This forum, and the thread "Footnote creation snippet are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 30th, 2006, 16:11
masonbarge's Avatar
Highly Reputable Member
Join Date: Jan 2006
Location: Atlanta GA
Posts: 631
Thanks: 0
Thanked 0 Times in 0 Posts
Post Footnote creation snippet

I did a little footnote function today, if anybody can use one.
Code: Select all
<?php

$footnotes = array(0 => 'empty');

function footnote ($foottext){
    global $footnotes;
    global $foottext;
    array_push($footnotes, $foottext);
    end ($footnotes);
    $footnumber = key($footnotes);
    $ft = $foottext;
    echo "<a href=\"#fn$footnumber\"><span
 class=\"fn\">$footnumber</a></span>";
}

function footnote_print () {
    global $footnotes;
    echo '<div class="fns"><h4> Footnotes </h4>';
    reset ($footnotes);
    next ($footnotes);
    foreach ($footnotes as $k => $v) {
        if ($k >= 1) {
            echo "<a name=\"fn$k\">&nbsp;&nbsp; $k.&nbsp; $v</a><br />";
        }
    }
}

?>
Suggestions for improvement are welcome. It works like a dream except I haven't figured out how to style the text size or vertical-align of the footnote number yet.

To use it, type
Code: Select all
<p> I am examining my lovely belly button.';
<?php
$foottext = 'When the first man was born, he did not have a belly button. Booor-ing.';
footnote ($foottext);
?>
</p>

yada yada yada

--- and at the end of the text section, or wherever you want it ---

<? php
footnote_print();
?>

Last edited by masonbarge; Nov 30th, 2006 at 16:18.
Reply With Quote

Reply

Tags
footnote, php

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
My new creation Dual Earth Webforumz Cafe 1 Jul 15th, 2007 17:33
forum creation collinsc Website Planning 10 Apr 1st, 2007 22:18
Sub-domain creation Zumico PHP Forum 3 Dec 23rd, 2006 13:39
need help with on a form creation skyfire400 Web Page Design 2 Oct 14th, 2006 06:46
Graphic Creation Question sportsgeek7 Graphics and 3D 5 Jun 26th, 2004 14:26


All times are GMT. The time now is 21:07.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43