Themeworld.com has an impressive list of fonts and smilies and and and…
Archives: December 1999
SELECT i.inumber as itemid, i.ititle as title, i.ibody as body, m.mname as author, m.mrealname as authorname, i.itime, i.imore as more, m.mnumber as authorid, m.memail as authormail, m.murl as authorurl, c.cname as category, i.icat as catid, i.iclosed as closed FROM nucleus_item as i, nucleus_member as m, nucleus_category as c WHERE i.iblog=1 and i.iauthor=m.mnumber and i.icat=c.catid and i.idraft=0 and i.itime<="2008-12-05 04:14:32" AND i.iblog = 1 AND i.inumber IN (10,12,17,24) ORDER BY i.itime DESC LIMIT 1,5
stdClass Object
(
[itemid] => 17
[title] => Fonts, etc.
[body] => Themeworld.com has an impressive list of fonts and smilies and and and…
[author] => erin
[authorname] => Erin Schnabel
[itime] => 2003-12-21 16:52:00
[more] =>
[authorid] => 1
[authormail] => erinschnabel@gmail.com
[authorurl] => http://ebullientworks.com/
[category] => General
[catid] => 1
[closed] => 0
)
stdClass Object
(
[itemid] => 12
[title] => Smilies
[body] => Free smilies for everyone’s use:
[author] => erin
[authorname] => Erin Schnabel
[itime] => 2003-11-26 13:59:00
[more] =>
[authorid] => 1
[authormail] => erinschnabel@gmail.com
[authorurl] => http://ebullientworks.com/
[category] => General
[catid] => 1
[closed] => 0
)
Free smilies for everyone’s use:
stdClass Object
(
[itemid] => 10
[title] => require_once vs. include_once in PHP
[body] => I keep forgetting the exact answer to this one, so figured I’d note it:
[PHP] Re: include_once vs require_once
Basically, as I understand it, require() and require_once() are replaced during parsing—before code execution. And include() and include_once() are replaced during code execution. Thus, a required file is always imported into the file whereas an included file is only imported if the include() statement is executed.
[author] => erin
[authorname] => Erin Schnabel
[itime] => 2003-11-21 23:03:00
[more] =>
[authorid] => 1
[authormail] => erinschnabel@gmail.com
[authorurl] => http://ebullientworks.com/
[category] => General
[catid] => 1
[closed] => 0
)
I keep forgetting the exact answer to this one, so figured I’d note it:
[PHP] Re: include_once vs require_once
Basically, as I understand it, require() and require_once() are replaced during parsing—before code execution. And include() and include_once() are replaced during code execution. Thus, a required file is always imported into the file whereas an included file is only imported if the include() statement is executed.



