<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.3" -->
<rss version="2.0">
	<channel>
		<title>Blog entries from twmeier</title>
		<description>A short description about your blog</description>
		<link>http://lab11.com</link>
		<lastBuildDate>Tue, 21 May 2013 04:00:21 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.3</generator>
		<item>
			<title>Will iPhone Apps Run On iPad?</title>
			<link>http://lab11.com/blogs/will-iphone-apps-run-on-ipad.html</link>
			<description>&lt;p&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/4309247609_be2df00905.jpg&quot; alt=&quot;&quot; hspace=&quot;15&quot; width=&quot;250&quot; align=&quot;left&quot; /&gt;One big question that iPhone developers have about the iPad, is whether or not existing iPhone app will also work on the iPad. The answer to that question is YES. The iPad in many ways looks like a large iPhone, and in many ways it acts like one too. &lt;/p&gt;&lt;p&gt;The iPad can run all of Apple's iTunes App Store iPhone and iPod touchs apps. And, just like an iPhone, you can uploadRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 29 Jan 2010 17:01:38 +0100</pubDate>
		<category>SDK</category>
 <category>iPhone</category>
 <category>iPad</category>
		</item>
		<item>
			<title>How to create a marquee text for an iPhone app</title>
			<link>http://lab11.com/blogs/How-to-create-a-marquee-text-for-an-iPhone-app.html</link>
			<description>&lt;p&gt;In this blog, you will learn how to create a moving text field (also know as a marquee). Marquees are very convenient to show news, stock updates, sport scores etc..&lt;/p&gt; &lt;p&gt;&lt;br /&gt;In the .h file:&lt;br/&gt;&lt;br /&gt;#import&lt;br/&gt;&lt;br /&gt;@interface FirstViewController : UIViewController {&lt;br /&gt;&lt;br /&gt; UIView *messageView;&lt;br /&gt; UILabel *lblTime;&lt;br /&gt; CGSize messageSize;&lt;br /&gt;}&lt;br /&gt;&lt;br/&gt;@end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the .m file:&lt;br /&gt;&lt;br /&gt;- (void)viewDidAppear:(BOOL)animated {&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt; NSString *theMessage Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Thu, 21 Jan 2010 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>iPhone</category>
		</item>
		<item>
			<title>How to Submit Additional Images in Virtuemart</title>
			<link>http://lab11.com/blogs/How-to-Submit-Additional-Images-in-Virtuemart.html</link>
			<description>&lt;p&gt;Adding a singe image to a product is easy. Adding additional images can be confusing.&lt;br /&gt;&lt;br /&gt;To add additional images to a product, find your product in the Product list in the backend of your website.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/virtuemartMedia.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;In the &amp;quot;Media&amp;quot; column, you will see a small icon. Click this icon. On the next page, you will be able to add more images to the product. You can also add other types of media suchRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 07 Aug 2009 06:00:00 +0100</pubDate>
		<category>Joomla</category>
 <category>Components</category>
		</item>
		<item>
			<title>Using an Image as a Submit Button in HTML</title>
			<link>http://lab11.com/blogs/Using-an-Image-as-a-Submit-Button-in-HTML.html</link>
			<description>&lt;p&gt;There are times when you want to use an image as a button to submit a form. One case is when you need to use JavaScript to check the html form was submitted correctly. Here is the code:&lt;br /&gt;&lt;br /&gt;&amp;lt;script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function checkForm()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var msg = &amp;quot;Please correct the following: \n\n&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var error = false;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 31 Jul 2009 06:00:00 +0100</pubDate>
		<category>Javascript</category>
 <category>HTML</category>
		</item>
		<item>
			<title>Quick and Easy SEO (Search Engine Optimization)</title>
			<link>http://lab11.com/blogs/Quick-and-Easy-SEO-Search-Engine-Optimization-.html</link>
			<description>&lt;p&gt;There are a few quick and easy ways to improve your website's search engine rankings using a few simple search engine optimizations. By following the simple steps below, you should see an increase in your rankings with the top search engines.&lt;br /&gt;&lt;br /&gt;1). Never register your domain for only one year at a time. Search engines will pick up on this and will assume your website may not be around for the long haul. There is not a specific number of years you should register your domain, but the Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 08 Jul 2009 06:00:00 +0100</pubDate>
		<category>SEO</category>
		</item>
		<item>
			<title>Joomla 1.5 Database Functions</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Database-Functions.html</link>
			<description>&lt;p&gt;Sometimes it may be hard to know how to best use Joomla's database class. Here are just a few of the most used database functions.&lt;br /&gt;&lt;br /&gt;In Joomla 1.5, include the following line of code inside your php:&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $database&amp;nbsp; =&amp;amp; JFactory::getDBO();&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;Use the $loadObject function when you want to retrieve one row from the database. For example:&lt;br /&gt;&lt;br /&gt;$database-&amp;gt;setQuery(&amp;quot;SELECT * FROM jos_comprofiler WHERE idRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 30 Jun 2009 06:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>PHP</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Changing a New Line to a Break</title>
			<link>http://lab11.com/blogs/Changing-a-New-Line-to-a-Break.html</link>
			<description>&lt;p&gt;There is a great php function takes a variable and changes the&amp;nbsp; new lines (\n) into breaks (&amp;lt;br/&amp;gt;). &lt;br /&gt;&lt;br /&gt;For example, a user submits a form on your website and used a textarea to submit a couple of paragraphs. You then retrieve this data from the database and echo it out in html. You will notice that it is now just one big paragraph.&lt;br /&gt;&lt;br /&gt;To fix this problem, you the function: nl2br&lt;br /&gt;&lt;br /&gt;Here is how you might use this:&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 30 Jun 2009 06:00:00 +0100</pubDate>
		<category>PHP</category>
		</item>
		<item>
			<title>How to Open a Link in a New Window.</title>
			<link>http://lab11.com/blogs/How-to-Open-a-Link-in-a-New-Window..html</link>
			<description>Opening a link in a new window is very easy. A link in HTML looks like this:&lt;br /&gt;&lt;br /&gt;&amp;lt;a href=&amp;quot;someurl.com&amp;quot;&amp;gt;Link Text&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;To open the link in a new window add target=&amp;quot;_blank&amp;quot;:&lt;br /&gt;&lt;br /&gt;&amp;lt;a href=&amp;quot;someurl.com&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Link Text&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;If you are using a text editor to create you links, you will often times see the option to open the link in a new window. </description>
			<author>Trevor M.</author>
			<pubDate>Wed, 10 Jun 2009 06:00:00 +0100</pubDate>
		<category>HTML</category>
		</item>
		<item>
			<title>Embedding Videos in Joomla Content </title>
			<link>http://lab11.com/blogs/Embedding-Videos-in-Joomla-Content-.html</link>
			<description>&lt;p&gt;Embedding videos inside your Joomla content is easy. There are several Joomla plugins that make it a snap.&lt;br /&gt;&lt;br /&gt;The plugin I would suggest is called the AllVideos (by JoomlaWorks), and can be downloaded for free at www.joomla.org.&lt;br /&gt;&lt;br /&gt;Once you have installed the plugin, you will need to enable it by going to the &quot;Plugin Manager&quot; in the backend of your Joomla site (/administrator).&lt;br /&gt;&lt;br /&gt;Below are some of the plugins features:&lt;/p&gt;&lt;br/&gt;&lt;p&gt; 1. Dozens of video providers supported, Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 19 May 2009 06:00:00 +0100</pubDate>
		<category>Plugins</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Modifying Page Title, Keywords and Description</title>
			<link>http://lab11.com/blogs/Modifying-Page-Title-Keywords-and-Description.html</link>
			<description>&lt;p&gt;Modifying the page title, keywords and description for a page created by a component&amp;nbsp; in Joomla is very simple.&lt;br /&gt;&lt;br /&gt;Inside your component, add the following:&lt;/p&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;global $mainframe;&lt;br /&gt;$mainframe-&amp;gt;SetPageTitle(&amp;quot;Some Page Title&amp;quot;);&lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( &amp;quot;description&amp;quot;, &amp;quot;Some Description.&amp;quot;); &lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( &amp;quot;keywords&amp;quot;, &amp;quot;keyword1, keyword2&amp;quot;);&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;It is that simple.&lt;/Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 11 May 2009 06:00:00 +0100</pubDate>
		<category>SEO</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>How to Stop a Form From Submitting on Enter</title>
			<link>http://lab11.com/blogs/How-to-Stop-a-Form-From-Submitting-on-Enter.html</link>
			<description>&lt;p&gt;I came across a problem this week, with a form that submitted when a user hit the &amp;quot;enter&amp;quot; or &amp;quot;return&amp;quot; button even though the submit button had an onclick function that should have kept the form from submitting. The problem only manifested itself on Google's Chrome browser.&lt;br /&gt;&lt;br /&gt;I found the following JavaScript code to keep this from happening:&lt;br /&gt;&lt;br /&gt;// Disables enter button from submitting the form&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var nav = window.Event ? true : false;&lt;bRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 10 Apr 2009 06:00:00 +0100</pubDate>
		<category>Javascript</category>
 <category>HTML</category>
		</item>
		<item>
			<title>Changing Page Title and Meta Info in Joomla</title>
			<link>http://lab11.com/blogs/Changing-Page-Title-and-Meta-Info-in-Joomla.html</link>
			<description>&lt;p&gt;Changing the Page Title and the Meta Tags (keywords and description) in a Joomla Component is simple (this does not apply to articles or the home page of your site).&lt;br /&gt;&lt;br /&gt;The first step is to include the following line of code inside php tags: &lt;/p&gt;&lt;p&gt;global $mainframe;&lt;br /&gt;&lt;br /&gt;Then simply use the following functions to change the Page Title, Meta Keywords and the Meta Description:&lt;br /&gt;&lt;br /&gt;$mainframe-&amp;gt;SetPageTitle(&amp;quot;Some Page Title&amp;quot;);&lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 30 Mar 2009 06:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Joomla</category>
 <category>Components</category>
		</item>
		<item>
			<title>Opening a New Browser Window</title>
			<link>http://lab11.com/blogs/Opening-a-new-browser-window.html</link>
			<description>&lt;p&gt; There are times when you may want to open a page in a new browser window. You may also want to be able to determine the size of the new window, whether or not to have scroll bars, tool bars,  status bars etc..  There is a ready-made JavaScript function that you can use to do this:  &lt;/p&gt;&lt;p&gt; window.open('url', 'window name', 'attribute1', 'attribute2', .....)  &lt;/p&gt;'url'&lt;br /&gt; This is the url of the page you would like to appear in the                new window. 'window name'&lt;br /&gt; You can nameRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 18 Mar 2009 06:00:00 +0100</pubDate>
		<category>Javascript</category>
 <category>HTML</category>
		</item>
		<item>
			<title>Parsing an XML string retrieved using AJAX</title>
			<link>http://lab11.com/blogs/Parsing-an-XML-string-retrieved-using-AJAX.html</link>
			<description>&lt;p&gt;While working on an AJAX function this week, I found the need to parse an XML string using JavaScript and PHP.  The following JavaScript was used to retrieve an XML string from a PHP file:&lt;/p&gt; &lt;p&gt;function someJavascriptFunction() {&lt;br /&gt;      xmlHttp=GetXmlHttpObject();     &lt;br /&gt;      url = &quot;/components/com_component/ajax/ajax.php?task=someTask&quot;;     &lt;br /&gt;      url += &quot;&amp;cc_number=&quot;+document.getElementById('cc_number').value;    &lt;br /&gt;      xmlHttp.open(&quot;GET&quot;,url,true);     &lt;br /&gt;      xmlHtRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 02 Mar 2009 07:00:00 +0100</pubDate>
		<category>XML</category>
 <category>Programming</category>
 <category>PHP</category>
 <category>Javascript</category>
 <category>Ajax</category>
		</item>
		<item>
			<title>Turn on Caching to Speed Up Your Joomla Site</title>
			<link>http://lab11.com/blogs/Turn-on-Caching-to-Speed-Up-Joomla-Site.html</link>
			<description>&lt;p&gt;There is a simple and effective way to help speed up your Joomla site. It is called &quot;caching&quot;. When you use the caching feature, Joomla creates a static file (or cache), of your web pages. This means that your website can use this cached file instead of making redundant database calls each time someone goes to a page. This in turn saves time and speeds up your site. &lt;/p&gt;&lt;p&gt; Log into the back of your Joomla site (/administrator)  to turn caching on. Go to &quot;Global Configuration&quot; as seen below.&lt;Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 27 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Creating a Joomla Menu Item</title>
			<link>http://lab11.com/blogs/Creating-a-Joomla-Menu-Item.html</link>
			<description>&lt;p&gt;Creating a new menu item in Joomla is extremely easy. Joomla uses these menu items to create a menu of links as seen below.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/menu.jpg&quot; alt=&quot;menu&quot; width=&quot;419&quot; height=&quot;118&quot; /&gt;&lt;/p&gt;&lt;p&gt;These links typically lead to an article. Assuming you already have the article created, click on the menu you would like to add to from the &amp;quot;Menus&amp;quot; drop down.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/menus.jpg&quot; altRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 17 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>How to add pages in Joomla</title>
			<link>http://lab11.com/blogs/How-to-add-pages-in-Joomla.html</link>
			<description>&lt;p&gt;The first step in adding a page in Joomla is to understand how Joomla displays pages. To display page, Joomla uses what it calls articles. Articles can be assigned to an infinite number of pages. &lt;br /&gt;&lt;br /&gt;To create new articles, you must first sign in to the backend of you website:&lt;br /&gt;http://your_domain_name.com/administrator           &lt;/p&gt;&lt;p class=&quot;style79&quot; align=&quot;center&quot;&gt;&lt;img src=&quot;https://www.dmcomputerservice.com/tutorials/joomla1.5/images/image1.jpg&quot; border=&quot;0&quot; alt=&quot;Joomla 1.5 admin Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 09 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Joomla's Global Check-in Feature</title>
			<link>http://lab11.com/blogs/Joomlas-Global-Check-in-Feature.html</link>
			<description>&lt;p&gt;When a user is editing a content item, module, menu item etc., Joomla &amp;quot;locks&amp;quot; this item to other users. This insures that changes can not be made by different users at the same time. Below is a picture of what another user would see in the backend if he were to try to also edit the setting of the &amp;quot;Who's Online&amp;quot; module.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/locked.jpg&quot; alt=&quot;locked&quot; width=&quot;293&quot; height=&quot;186&quot; /&gt;&lt;/p&gt;&lt;p&gt;If the user who is editing theRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 28 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Joomla 1.5 Popups</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Popups.html</link>
			<description>&lt;p&gt;Joomla 1.5 has a great pop up class which will dim the webpage and popup a smaller page over top of it. In order to use this feature, you must include the following in your code, or you could also place it inside your template between the  tags.&lt;/p&gt; &lt;p&gt;JHTML::_('behavior.modal');&lt;/p&gt; &lt;p&gt;Then put in a link with the information you want similar to the one below:&lt;/p&gt; &lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/popupcode.jpg&quot; alt=&quot;popupcode&quot; width=&quot;632&quot; height=&quot;101&quot; /&gt;&lt;br /&gt;&lt;br /&gt;If yRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 21 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Using Joomla's Media Manager</title>
			<link>http://lab11.com/blogs/Using-Joomlas-Media-Manager.html</link>
			<description>&lt;p&gt;There are times when you may need to upload an images, pdf or any other type of file to your site. Luckily, Joomla has a built in tool for uploading your files. This tool is called the Media Manager.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;To get to the Media Manager, login to the backend of your site (/administrator) and click &amp;quot;Media Manager&amp;quot; from the &amp;quot;Site&amp;quot; drop down menu.&lt;/p&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/mediamanager.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; width=&quot;543&quot; height=&quot;380&quot; /&gt; &lt;p&gt;&amp;nbRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 13 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
	</channel>
</rss>
