When you call the plugin, you normally specify a Chart ID like this:
{plotalot id="68"}
If you specify a non-numeric Chart ID, the plugin retrieves the value as a Get or Post variable. For example:
{plotalot id="chart_id"}
Retrieves the value of the "chart_id" variable. You could pass the "chart_id" parameter on a URL, like this:
http://www.mysite.com/my-charts?chart_id=68
You can use a variable chart ID to create a select list of charts in an article:
<form action="" method="get">Select an Area<br />
<select name="cid" size="1" onchange="this.form.submit()">
<option value="0">Select an Area</option>
<option value="38">Europe</option>
<option value="39">North America</option>
<option value="40">South America</option>
<option value="41">Asia</option>
<option value="42">Australia</option>
</select>
</form>
{plotalot id="cid" error_txt=" "}
There are a few things to explain here: