<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">IntoEEtive</title>
    <subtitle type="text">IntoEEtive:websites that work, not just look</subtitle>
    <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/index/" />
    <link rel="self" type="application/atom+xml" href="http://www.intoeetive.com/index.php/site/atom/" />
    <updated>2009-08-26T09:22:39Z</updated>
    <rights>Copyright (c) 2009, runner</rights>
    <generator uri="http://expressionengine.com/" version="1.6.7">ExpressionEngine</generator>
    <id>tag:intoeetive.com,2009:08:25</id>


    <entry>
      <title>A simple trick to set formatting of fields easily in SAEF</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/a_simple_trick_to_set_formatting_of_fields_easily_in_saef/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.13</id>
      <published>2009-08-25T08:01:55Z</published>
      <updated>2009-08-25T08:08:56Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Tips &amp; Tricks"
        scheme="http://www.intoeetive.com/index.php/site/C4/"
        label="Tips &amp; Tricks" />
      <content type="html"><![CDATA[
        <p>Field formatting in Stand-alone entry form in ExpressionEngine has always been pain for me. Especially in Stand-alone edit form.<br />
I rarely use the default {custom_fields} tag as I prefer to stylize each field differently, so the only solution to give proper formattion to fields was adding <br />
<code>&lt;input type=&#8220;hidden&#8221; name=&#8221;&#123;exp:form_helper:field_grabber field_name=&#8216;train_date_start&#8217; which=&#8216;format&#8217;&#125;&#8221; value=&#8220;none&#8221; /&gt;</code><br />
However, I&#8217;ve discovered much simplier way!</p>

<p>Include<br />
<code>{custom_fields}<br />
&lt;div style=&#8220;display: none&#8221;&gt;&lt;/div&gt;<br />
{/custom_fields}</code><br />
anywhere in your template - and you&#8217;ll get field formatting for all fields authomatically added to your hidden fields list!</p>

<p>Note the {custom_fields} tag pair should not be empty - place something inside.
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Make OpenX properly display UTF&#45;8 characters</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/make_openx_properly_display_utf-8_characters/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.12</id>
      <published>2009-08-19T07:05:17Z</published>
      <updated>2009-08-19T07:13:18Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Tips &amp; Tricks"
        scheme="http://www.intoeetive.com/index.php/site/C4/"
        label="Tips &amp; Tricks" />
      <content type="html"><![CDATA[
        <p>Upon installing OpenX, I realized that it does not display properly some UTF-8 charactes, such as Russian &#8216;&#1048;&#8217; and &#8216;&#1096;&#8217;.</p>

<p>The solution (got it <a href="http://www.creativecrap.com/content/fix-openx-utf8-problem" target="_blank">here</a>) is to place SET NAMES &#8216;utf8&#8217; in two places.</p>

<p>file: openx/lib/OA/DB.php<br />
search: $oDbh->setFetchMode(MDB2_FETCHMODE_ASSOC);<br />
add after: $oDbh->query(&#8220;SET NAMES utf8&#8221;);</p>

<p>file: openx/lib/OA/Dal/Delivery/mysql.php<br />
search: if (@mysql_select_db($dbName, $dbLink)) {<br />
add before: @mysql_query(&#8220;SET NAMES utf8&#8221;);
</p>
      ]]></content>
    </entry>

    <entry>
      <title>jQuery ajax not working in IE</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/jquery_ajax_not_working_in_ie/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.11</id>
      <published>2009-08-19T06:58:50Z</published>
      <updated>2009-08-19T07:05:51Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Tips &amp; Tricks"
        scheme="http://www.intoeetive.com/index.php/site/C4/"
        label="Tips &amp; Tricks" />
      <content type="html"><![CDATA[
        <p>Once upon a time <img src="http://www.intoeetive.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /> I faced a strange problem:<br />
I was trying lo load the remote page via jQuery load() function. In Firefox, everything worked perfectly, but Internet Explorer returned just nothing.<br />
The request was sent, but the function (as well as other jQuery ajax functions - I tried) returned just parsererror.<br />
After spending several hours googling trying different thing, I found that solution was very simple, watch this:<br />
I had in my .htaccess<br />
AddDefaultCharset utf8<br />
This is WRONG, should be<br />
AddDefaultCharset utf-8<br />
IE could not recognize the charset &#8216;utf8&#8217; and therefore returned parsererror (though there was no need to parse anything <img src="http://www.intoeetive.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" />)
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Gallery select extension for FieldFrame</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/gallery_select_exrension_for_fieldframe/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.10</id>
      <published>2009-05-31T10:38:03Z</published>
      <updated>2009-08-19T06:42:04Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Extensions"
        scheme="http://www.intoeetive.com/index.php/site/C7/"
        label="Extensions" />
      <content type="html"><![CDATA[
        <p>As some of you might know, Brandon Kelly has written <a href="http://brandon-kelly.com/apps/fieldframe/" target="_blank">FieldFrame</a> - ExpressionEngine extension and framework that enables easy adding of custom weblog fields.</p>

<p>Following the steps, I&#8217;ve created a field type called Gallery - which allows the admin to select one or several gallery categories that will be linked to the entry.</p>

<p>To install, copy the <code>galleries</code> folder and its content to the folde that has your FieldFrame custom fieldtype definitions (usually) <code>extensions/fieldtypes</code> and enable it in Admin  ???&nbsp; Utilities  ???&nbsp; Extensions Manager  ???&nbsp; Fieldtypes Manager. Of course, you&#8217;ll need to have FieldFrame installed.</p>

<p>Now, you can see Gallery in the list of possible field types when creating new custom fields.</p>

<p>Use as usually with FieldFrame field types:<br />
<code>{custom_field_name}<br />
&lt;a href=&#8221;http://www.intoeetive.com/index.php/galleries/{option}&#8221;&gt;{option_name}&lt;/a&gt;<br />
{/custom_field_name}</code><br />
Replace custom_field_name with your field name</p>


      ]]></content>
    </entry>

    <entry>
      <title>Pupulating relationship field in stand&#45;alone edit form</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/pupulating_relationship_field_in_stand-alone_edit_form/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.9</id>
      <published>2009-03-31T13:58:41Z</published>
      <updated>2009-03-31T14:12:42Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Plugins"
        scheme="http://www.intoeetive.com/index.php/site/C5/"
        label="Plugins" />
      <content type="html"><![CDATA[
        <p>I've extended capabilities of Solspace Form_Helper plugin.<br />
Now you can easily manipulate your custom relationship fields in ExpressionEngine stand-alone edit form. <br />
Please note that you need the Form Helper plugin, that you can <a href="http://www.solspace.com/software/detail/form_helper/c/plugins/">obtain here</a>. Currently only 'weblog' type of relationship is supported.</p>

<p>Just add anywhere in the plugin body new function:</p>

<textarea readonly="readonly" style="width: 100%" rows="20">
	// ----------------------------------------
	//  Custom Relationship
	// ----------------------------------------
	
	function custom_relationship()
	{
		global $DB, $TMPL;
		
		$entry_id	= ( $TMPL->fetch_param('entry_id') ) ? $TMPL->fetch_param('entry_id'): '';
		$field_name	= ( $TMPL->fetch_param('field_name') ) ? $TMPL->fetch_param('field_name'): '';
		
		$getweblog		= $DB->query("SELECT f.field_id, f.field_related_id AS id FROM exp_weblog_fields AS f, exp_weblogs AS w WHERE f.group_id=w.field_group AND f.field_name='".$field_name."'");

		if ($getweblog->num_rows == 0) {return;}

		$values		= $DB->query("SELECT DISTINCT entry_id AS eid, title AS et FROM exp_weblog_titles WHERE weblog_id='".$getweblog->row['id']."' AND status!='closed'");

		if ($values->num_rows == 0) {return;}
		
		$selected		= $DB->query("SELECT r.rel_child_id AS id FROM exp_relationships AS r WHERE r.rel_parent_id='".$entry_id."'");

		if ($selected->num_rows == 0) {$selected->row['id']='';}

		// ----------------------------------------
		//  Parse tagdata
		// ----------------------------------------
		$output	= '';
		
		foreach($values->result as $row)

		{
			$tagdata	= $TMPL->tagdata;
			
			if ( $row['eid'] == $selected->row['id'] )
			{
				$tagdata	= $TMPL->swap_var_single('selected', 'selected', $tagdata);
				$tagdata	= $TMPL->swap_var_single('checked', 'checked', $tagdata);
			}
			else
			{
				$tagdata	= $TMPL->swap_var_single('selected', '', $tagdata);
				$tagdata	= $TMPL->swap_var_single('checked', '', $tagdata);
			}
			
			$tagdata	= $TMPL->swap_var_single('field_id', $getweblog->row['field_id'], $tagdata);
			$tagdata	= $TMPL->swap_var_single('value', $row['eid'], $tagdata);
			$tagdata	= $TMPL->swap_var_single('label', $row['et'], $tagdata);
			
			$output		.= $tagdata;
		}
		//	End parse tagdata
		
		return $output;
	}
	
	//	End custom Relationship	
</textarea>

<p><b>Usage instuctions:</b><br />
<code>&#123;exp:form_helper:custom_relationship entry_id="{entry_id&#125;" field_name="summaries"}&#123;/exp:form_helper:custom_relationship&#125;</code></p>

<p>Note that this tag requires an entry_id.</p>

<p>Example 1<br />
<textarea readonly="readonly" style="width: 100%" rows="6"><select name="&#123;exp:form_helper:field_grabber field_name='summaries'&#125;">
&#123;exp:form_helper:custom_relationship entry_id="{entry_id&#125;" field_name="summaries"}
<option value="{value}" {selected}>{label}</option>
&#123;/exp:form_helper:custom_relationship&#125;
</select>
<input type="hidden" name="&#123;exp:form_helper:field_grabber field_name='summaries' which='format'&#125;" value="br" /></textarea></p>

<p>Example 2<br />
<textarea readonly="readonly" style="width: 100%" rows="4">&#123;exp:form_helper:custom_relationship entry_id="{entry_id&#125;" field_name="summaries"}
<input type="radio" name="{field_id}" value="{value}" {checked}>{label}
&#123;/exp:form_helper:custom_relationship&#125;
<input type="hidden" name="&#123;exp:form_helper:field_grabber field_name='summaries' which='format'&#125;" value="br" /></textarea></p>
      ]]></content>
    </entry>

    <entry>
      <title>Buddies plugin &#45; easy friendship management for EE</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/buddies_plugin_-_easy_frienship_management_for_ee/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.8</id>
      <published>2009-03-11T14:29:38Z</published>
      <updated>2009-08-26T09:22:39Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Plugins"
        scheme="http://www.intoeetive.com/index.php/site/C5/"
        label="Plugins" />
      <content type="html"><![CDATA[
        <p>This plugin enables users to have buddies/friends/followers just like in many popular social networks and blogging systems.<br />
The users are able to add/remove others as their friends. The lists of friends added by user and also who added him can be displayed.<br />
Also, you can have &#8220;enemies&#8221; along with friends - for fun or for something useful.<br />
The plugin is using standard database table, so it&#8217;s 100% compatible with Buddies/Blocked list that can be found under Personal messages in user&#8217;s Control Panel.</p>

<p><code>&#123;exp:buddies:add subject_id=&#8221;%member_id_1%&#8221; object_id=&#8221;%member_id_2%&#8221; type=&#8220;buddy&#8221;&#125;</code><br />
Add a member as friend of another member.<br />
<i>subject_id</i> - member_id of user who wants to add a friend<br />
<i>object_id</i> - member_id of the user to be added as friend<br />
<i>type</i> - can be omited. Defaults to &#8216;buddy&#8217; but you can set it to &#8216;blocked&#8217; to work with blocked members instead</p>

<p><code>&#123;exp:buddies:remove subject_id=&#8221;%member_id_1%&#8221; object_id=&#8221;%member_id_2%&#8221; type=&#8220;buddy&#8221;&#125;</code><br />
Remove a member from friends of another member.<br />
<i>subject_id</i> - member_id of user who wants to remove a friend<br />
<i>object_id</i> - member_id of the user to be removed from friends<br />
<i>type</i> - can be omited. Defaults to &#8216;buddy&#8217; but you can set it to &#8216;blocked&#8217; to work with blocked members instead</p>

<p><code>&#123;exp:buddies:check subject_id=&#8221;%member_id_1%&#8221; object_id=&#8221;%member_id_2%&#8221; type=&#8220;buddy&#8221;&#125;<br />
...some html here&#8230;<br />
&#123;/exp:buddies:check&#125;</code><br />
Check whether a member is friend of another member.<br />
Does not return anything, but the code inside is displayed only if the object member IS NOT a friend of subject </p>

<p><code>&#123;exp:buddies:display subject_id=&#8221;%member_id_1%&#8221; type=&#8220;buddy&#8221;&#125;<br />
0<br />
{username}<br />
{screen_name}<br />
{avatar_filename}<br />
...any other field available in exp_members table<br />
&#123;/exp:buddies:display&#125;</code><br />
Display friends of a member.<br />
<i>subject_id</i> - member_id of user to display his friends<br />
<i>type</i> - can be omited. Defaults to &#8216;buddy&#8217; but you can set it to &#8216;blocked&#8217; to work with blocked members instead</p>

<p><code>&#123;exp:buddies:display_reverse subject_id=&#8221;%member_id_1%&#8221; type=&#8220;buddy&#8221;&#125;<br />
0<br />
{username}<br />
{screen_name}<br />
{avatar_filename}<br />
...any other field available in exp_members table<br />
&#123;/exp:buddies:display&#125;</code><br />
Display members, for whom choosen member is a friend.<br />
<i>subject_id</i> - member_id of user who is &#8220;friend of&#8221; users to display<br />
<i>type</i> - can be omited. Defaults to &#8216;buddy&#8217; but you can set it to &#8216;blocked&#8217; to work with blocked members instead
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Title generator</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/title_generator/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.7</id>
      <published>2009-03-02T12:02:00Z</published>
      <updated>2009-03-02T12:08:01Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Extensions"
        scheme="http://www.intoeetive.com/index.php/site/C7/"
        label="Extensions" />
      <content type="html"><![CDATA[
        <p>If you occasionally didn&#8217;t provide title for the entry you create, it can be automatically set to category name(s) of the entry. Can be especially useful in SAEF.
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Entry rating: multiple ratings</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/entry_rating_multiple_ratings/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.6</id>
      <published>2009-02-25T21:06:35Z</published>
      <updated>2009-02-25T21:18:36Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Modules"
        scheme="http://www.intoeetive.com/index.php/site/C6/"
        label="Modules" />
      <content type="html"><![CDATA[
        <p>This is a modification of <a href="http://utilitees.silenz.org/index.php/docs/item/entry-rating-documentation/">Entry rating module</a> by Oliver Heine that allows to have multiple ratings per entry - for example, if you want to enable users to rate entry by several criterias.<br />
To use, add parameter <code>rating=&#8220;1&#8221;</code> to any of module&#8217;s tags (replace 1 with 2,3,etc. - you can have as many rating as you need. <br />
If you have just one rating parameter - call the module as usual.
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Get similar entries (useful for catalogs etc.)</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/get_similar_entries/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.5</id>
      <published>2009-02-15T12:15:12Z</published>
      <updated>2009-02-15T12:21:13Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Plugins"
        scheme="http://www.intoeetive.com/index.php/site/C5/"
        label="Plugins" />
      <content type="html"><![CDATA[
        <p>On a single-entry page, it is nice when you can display links to &#8220;similar entries&#8221;.<br />
For example, I have a catalogue of cars for sale and when a user views the car??™s page I want to show him links to several cars of the same type sold for the same price.<br />
To achieve this, you can filter (search) entries by custom field or use categories. However, both methods have limitations.<br />
So I wrote a plugin called ???Similar Entries???</p>

<p>You call it providing an entry_id and a list of fields by which you??™d like to find similar entries (in my case, that will be price and type). And it will display entries which are similar (not exactly fitting). You can provide both strings and numbers (with +- range to search). The plugin respects categories as well, but if it can??™t find similar entries in your category - it will seach in others/</p>

<p>Please find detailed usage instuction on the plugin page at your EE installation.</p>

<p>The plugin currently does not use title to find similar entries - only the custom fields (and categories). </p>

<p><a href="http://expressionengine.com/forums/viewthread/103551/">Support thread on EE forums</a>
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Portfolio</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/portfolio/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.4</id>
      <published>2009-02-15T11:37:02Z</published>
      <updated>2009-08-19T06:57:03Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Works"
        scheme="http://www.intoeetive.com/index.php/site/C3/"
        label="Works" />
      <content type="html"><![CDATA[
        <p>I specialize in ExpressionEngine - creating custom extensions as well as ready-to-go sites.</p>

<p>There are 3 main places where you can see my work:</p>

<p>1. <a href="http://www.intoeetive.com">This website <img src="http://www.intoeetive.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /></a><br />
2. <a href="http://translate.google.com/translate?hl=en&amp;js=y&amp;u=http%3A%2F%2Fwww.weblancer.net%2Fusers%2Fyurr%2Fportfolio%2F&amp;sl=ru">Weblancer</a><br />
3. <a href="http://runner.elance.com">Elance</a></p>

<p>If you want to hire me, or have any questions - simply email  or </p><script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script><p><a href="skype:yuriy.salimovskyy?call"><img src="http://mystatus.skype.com/bigclassic/yuriy%2Esalimovskyy" style="border: none;" width="182" height="44" alt="My status" /></a>
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Intuitive into ExpressionEngine</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/about/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.3</id>
      <published>2009-02-15T10:42:54Z</published>
      <updated>2009-08-19T06:28:55Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>intoEEtive stands for &#8216;intuitive into ExpressionEngine&#8217;.</p>

<p>ExpressionEngine is, I&#8217;d say, the most powerful and user-friendly at the same time content-management system (CMS) for website. ExpressionEngine makes your site to work and look exactly the way you want - with minimum efforts and cost.<br />
Please see the <a href="http://expressionengine.com/showcase/">real-world examples</a> in the showcase at ExpressionEngine webiste.</p>

<p>My name is Yuriy and I&#8217;m a freelance ExpressionEngine developer located in Ukraine.</p>

<p>If you have any questions, please contact me via<br />
Skype </p><script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script><p><a href="skype:yuriy.salimovskyy?call"><img src="http://mystatus.skype.com/bigclassic/yuriy%2Esalimovskyy" style="border: none;" width="182" height="44" alt="My status" /></a><br />
or email </p>

<p>The best way to hire me is via <a href="http://runner.elance.com/">Elance</a>
</p>
      ]]></content>
    </entry>

    <entry>
      <title>Simplifying mathematical operations in EE</title>
      <link rel="alternate" type="text/html" href="http://www.intoeetive.com/index.php/site/simplifying_mathematical_operations_in_ee/" />
      <id>tag:intoeetive.com,2009:index.php/site/index/1.2</id>
      <published>2009-02-15T10:09:34Z</published>
      <updated>2009-02-15T11:21:35Z</updated>
      <author>
            <name>runner</name>
            <email>heartcry@gmail.com</email>
                  </author>

      <category term="Extending EE"
        scheme="http://www.intoeetive.com/index.php/site/C1/"
        label="Extending EE" />
      <category term="Plugins"
        scheme="http://www.intoeetive.com/index.php/site/C5/"
        label="Plugins" />
      <content type="html"><![CDATA[
        I wrote a small plugin that enables the usage of basic mathematical (arithmetic) operations (e.g. + - * / )<br />
<br />
It can be useful especially in conjunction with conditional statements.<br />
<br />
The plugin takes 2 parameter, num1 and num2, which are the numbers you want to do something with<br />
<br />
Call<br />
<code>&#123;exp:math:add num1="10" num2="2"&#125;</code><br />
to add 2 and 10 (10+2)<br />
<br />
<code>&#123;exp:math:subtract num1="10" num2="2"&#125;</code><br />
to subtract 2 from 10 (10-2)<br />
<br />
<code>&#123;exp:math:multiply num1="10" num2="2"&#125;</code><br />
to multiply 10 and 2 (10*2)<br />
<br />
<code>&#123;exp:math:divide num1="10" num2="2"&#125;</code><br />
to divide 10 by 2 (10/2) <br />
<br />
For more usage examples and some kind of support, please visit <a href="http://expressionengine.com/forums/viewthread/98474/" target="_blank">EE forum thread</a>
      ]]></content>
    </entry>


</feed>