<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8634644934688984857</id><updated>2012-01-25T18:49:36.223-08:00</updated><category term='feeds'/><category term='xml'/><category term='sql'/><category term='break up rss'/><category term='php'/><category term='rss'/><category term='break up feeds'/><title type='text'>Web Design Tips, Tutorials, Info &amp; more</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8634644934688984857.post-6430020118204366335</id><published>2010-08-07T20:11:00.001-07:00</published><updated>2010-08-07T20:12:36.101-07:00</updated><title type='text'>get the current page name without full domain</title><content type='html'>Use:&lt;br /&gt;&lt;br /&gt;//&lt;?php&lt;br /&gt;function curPageName() {&lt;br /&gt; return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;echo "This page name is ".curPageName();&lt;br /&gt;?&gt;//&lt;br /&gt;&lt;br /&gt;This will give you just page.html etc..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8634644934688984857-6430020118204366335?l=erics-web-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/6430020118204366335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://erics-web-tips.blogspot.com/2010/08/get-current-page-name-without-full.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/6430020118204366335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/6430020118204366335'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/2010/08/get-current-page-name-without-full.html' title='get the current page name without full domain'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8634644934688984857.post-6632540399667902325</id><published>2010-08-07T20:08:00.000-07:00</published><updated>2010-08-07T20:11:19.639-07:00</updated><title type='text'>Current Page Name in PHP</title><content type='html'>Paste this code anywhere on your page or include:&lt;br /&gt;&lt;br /&gt;//&lt;?php&lt;br /&gt;function curPageURL() {&lt;br /&gt; $pageURL = 'http';&lt;br /&gt; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}&lt;br /&gt; $pageURL .= "://";&lt;br /&gt; if ($_SERVER["SERVER_PORT"] != "80") {&lt;br /&gt;  $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];&lt;br /&gt; } else {&lt;br /&gt;  $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];&lt;br /&gt; }&lt;br /&gt; return $pageURL;&lt;br /&gt;}&lt;br /&gt;?&gt;//&lt;br /&gt;&lt;br /&gt;Then you can output the current page name using:&lt;br /&gt;&lt;br /&gt;//&lt;?php&lt;br /&gt;  echo curPageURL();&lt;br /&gt;?&gt;//&lt;br /&gt;&lt;br /&gt;Simple and easy, and a great little piece of code!&lt;br /&gt;&lt;br /&gt;note**** remove the "//"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8634644934688984857-6632540399667902325?l=erics-web-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/6632540399667902325/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://erics-web-tips.blogspot.com/2010/08/current-page-name-in-php.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/6632540399667902325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/6632540399667902325'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/2010/08/current-page-name-in-php.html' title='Current Page Name in PHP'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8634644934688984857.post-3719409858871837355</id><published>2009-02-11T15:21:00.000-08:00</published><updated>2009-02-11T15:25:47.072-08:00</updated><title type='text'>Transparent Flash Banner ads, or flash animations</title><content type='html'>This is a question that comes up quite often.  You see them all the time on sites like imdb.com or cnn.com - A flash file when rolled over with mouse activates into a larger banner.  They are actually pretty annoying, but I must say usually are some of the most creative banner ads I see around.&lt;br /&gt;&lt;br /&gt;I have found a nice easy transparent flash banner ad tutorial here for you:&lt;br /&gt;http://www.webdesign.org/web/flash/tutorials/change-flash-size-at-run-time.7633.html&lt;br /&gt;&lt;br /&gt;Unfortunately this is done in a flash ( like ) program. If there is a demand, I can post a tutorial on doing this in Adobe Flash.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8634644934688984857-3719409858871837355?l=erics-web-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/3719409858871837355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://erics-web-tips.blogspot.com/2009/02/transparent-flash-banner-ads-or-flash.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/3719409858871837355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/3719409858871837355'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/2009/02/transparent-flash-banner-ads-or-flash.html' title='Transparent Flash Banner ads, or flash animations'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8634644934688984857.post-44684005094330442</id><published>2009-02-11T15:19:00.001-08:00</published><updated>2009-02-11T15:21:16.297-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><category scheme='http://www.blogger.com/atom/ns#' term='break up feeds'/><category scheme='http://www.blogger.com/atom/ns#' term='break up rss'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='feeds'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='rss'/><title type='text'>Break up XML feeds using php - Tutorial</title><content type='html'>A lot of people seem to ask how to do this. A client asked me once for a similar solution, and once I researched a little about this, I found it was quite simple to do.  I will explain more in a full tutorial soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8634644934688984857-44684005094330442?l=erics-web-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/44684005094330442/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://erics-web-tips.blogspot.com/2009/02/break-up-xml-feeds-using-php-tutorial.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/44684005094330442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/44684005094330442'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/2009/02/break-up-xml-feeds-using-php-tutorial.html' title='Break up XML feeds using php - Tutorial'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8634644934688984857.post-5588482541252625544</id><published>2009-01-30T21:48:00.000-08:00</published><updated>2009-01-30T21:53:31.815-08:00</updated><title type='text'>Space in above dhtml menu in firefox</title><content type='html'>One day I all of a sudden noticed my website was not displaying correctly, I had spaces above images, and spaces above my dhtml drop down menu.  I spent a little time trying to find the answer by searching Google, and eventual found my solution.&lt;br /&gt;&lt;br /&gt;Just place this into your css file:&lt;br /&gt;&lt;br /&gt;object { display:block; }&lt;br /&gt;&lt;br /&gt;or if you do not have a css file, use :&lt;br /&gt;&lt;br /&gt;&lt;style type="text/css"&gt;&lt;br /&gt;object { display:block; }&lt;br /&gt;&lt;/style&gt;&lt;br /&gt;&lt;br /&gt;in between the head tags of course :)&lt;br /&gt;&lt;br /&gt;Eric's Tip #1&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8634644934688984857-5588482541252625544?l=erics-web-tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erics-web-tips.blogspot.com/feeds/5588482541252625544/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://erics-web-tips.blogspot.com/2009/01/space-in-above-dhtml-menu-in-firefox.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/5588482541252625544'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8634644934688984857/posts/default/5588482541252625544'/><link rel='alternate' type='text/html' href='http://erics-web-tips.blogspot.com/2009/01/space-in-above-dhtml-menu-in-firefox.html' title='Space in above dhtml menu in firefox'/><author><name>---</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
