//Formerly the Catalog
$thisfile = basename(__FILE__);
$filedate = date ("F d Y", filemtime($thisfile ));
$curpage = "Index";
include "0-head-a.php";
$cookie_name = "pfor";
if(!isset($_COOKIE[$cookie_name])) {
$cookie_value = "row";
setcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 day
} else {
$view = ($_COOKIE[$cookie_name]);
}
if(isset($_POST['pfor']) && $_POST['pfor']=='block') {
setcookie($cookie_name, 'block', time() + (86400 * 7), '/');
header("Refresh:0");
} else if(isset($_POST['pfor'])&& $_POST['pfor']=='row') {
setcookie($cookie_name, 'row', time() + (86400 * 7), '/');
header("Refresh:0");
} else if(isset($_POST['pfor'])&& $_POST['pfor']=='table') {
setcookie($cookie_name, 'table', time() + (86400 * 7), '/');
header("Refresh:0");
}
if (isset($_GET['Product_Category'])) {
$Product_Category = $_GET['Product_Category'];
switch ($Product_Category) {
CASE "Sativas":
$Species = "Sativa"; $ILG = "Sym-S.png"; $SKU = "SAT-LIST";
$FullD = "Cannabis Sativa is a species of the Cannabis genus of plants. It is a herbaceous annual plant that is native to central and eastern Asia, but it is now cultivated and grown throughout the world. Cannabis Sativa is known for its tall, thin stalks and narrow, serrated leaves. It is also known for producing high levels of the psychoactive compound THC, which is responsible for its psychoactive effects.
The plant is believed to have originated in Central Asia and is thought to have been cultivated for its fibers and seeds for thousands of years. Cannabis Sativa has been used for a wide variety of purposes, including the production of textiles, medicine, food, and recreational drugs.
Cannabis Sativa is typically grown in warm, humid environments and requires plenty of sunlight to thrive. It is a fast-growing plant that can reach heights of up to 20 feet. It is usually grown from seeds and can be propagated through cuttings or by planting clones.
There are many positive health attributions associated with cannabis sativa, but the scientific evidence to support these claims is limited. Some people claim that cannabis sativa can be used to treat a variety of medical conditions, including chronic pain, anxiety, and epilepsy. However, more research is needed to confirm these claims.";
$ShortD = "Sativas typically are associated with the creative and energetic aspects of life, uplifting and positive.";
$query = "SELECT * FROM tbl_strains WHERE Species = 'S' AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "Indicas":
$Species = "Indica"; $ILG = "Sym-I.png"; $SKU = "IND-LIST";
$FullD = "Cannabis Indica is a species of cannabis that is native to the Indian subcontinent and surrounding regions. It is believed to have evolved in the Himalayan mountain range and is well-suited to the cool, humid climate of the region. Cannabis Indica is known for its short, bushy growth habit and broad, dark green leaves.
Indica strains are often associated with relaxation and sedation, and are commonly used for the treatment of stress, anxiety, and insomnia. Some people also use indica strains to help manage chronic pain and muscle spasms. It is important to note that the therapeutic effects of cannabis can vary widely from person to person, and the specific effects of a particular strain can depend on many factors, including the individual's unique biology and the way the plant was grown and processed.
In terms of botanical growing specifics, cannabis indica is generally more hardy and resistant to pests and diseases than other cannabis strains. It tends to be more resistant to extreme temperature fluctuations and can thrive in a range of environments. Indica strains tend to have a shorter flowering time than Sativa strains and are generally ready for harvest in 8-12 weeks. They also tend to produce higher yields than Sativa strains.";
$ShortD = "Indica strains are known for a very relaxing high. Great for folks suffering from insomnia, chronic pain and muscle spasms.";
$query = "SELECT * FROM tbl_strains WHERE Species = 'I' AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "Hybrids":
$Species = "Hybrid"; $ILG = "Sym-H.png"; $SKU = "HYB-LIST";
$FullD = "Cannabis sativa and cannabis indica are two of the three main subspecies of the cannabis plant. They have a long history of use as medicinal and recreational drugs, and they are also used in the production of a wide range of products such as hemp fiber, oil, and seeds.
Hybrids of cannabis sativa and cannabis indica have become increasingly popular in recent years. These hybrids often combine the best qualities of both parent strains, resulting in plants that have a more balanced set of effects when consumed.
As far as growing specifics go, both cannabis sativa and cannabis indica plants have similar requirements for light, temperature, and soil type. They both prefer a well-draining soil mix and plenty of sunlight, although cannabis indica can tolerate slightly cooler temperatures than cannabis sativa.
There is a wide range of anecdotal health attributions associated with the use of cannabis, both for medicinal and recreational purposes. Some people claim that cannabis can help with a variety of medical conditions, including chronic pain, inflammation, epilepsy, and anxiety. However, it is important to note that the scientific evidence supporting these claims is often limited and further research is needed to fully understand the potential health benefits and risks of cannabis use.";
$ShortD = "Hybrids blend both Sativa and Indica traits, providing the best of both worlds.";
$query = "SELECT * FROM tbl_strains WHERE Species = 'H' AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "Feminized":
$Species = "Feminized"; $ILG = "Sym-Fem.png"; $ThePrice = "6.50"; $SKU = "FEM-LIST";
$FullD = "Feminized cannabis seeds are seeds that are bred to produce only female plants. In the cannabis industry, female plants are highly sought after because they are the ones that produce buds, which are the part of the plant that is typically used for medicinal or recreational purposes.
One way to create feminized seeds is by using colloidal silver. Colloidal silver is a liquid suspension of silver nano-particles in water. When it is applied to the flowers of a female plant, it can cause the plant to produce male flowers that contain female genetics, by inhibiting the production of ethylene (which keeps the plant female). These male flowers can then be used to pollinate female plants, resulting in seeds that are genetically female.";
$ShortD = "Want an easy grow with No Males, Zero Pollination? Feminized seeds are the answer. Feminized seeds can only grow female plants.";
$query = "SELECT * FROM tbl_strains WHERE Feminized = 1 AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "F1s":
$Species = "Experimental"; $ILG = "Sym-F1.png"; $SKU = "F1-LIST";
$FullD = "F1 Cross (Experimental) Seeds can be unpredictable. You may get a crop that looks uniform, but with different odors on each plant. Generally you'll get some that are very similar to one of the parent, or you may end up with something in between. These beans carry the genes of the parents, and can express themselves in any way you can conceive. Intended for breeders who want to take a strain to the next level, IF you breed these, let us know, we may be interested in a seed trade out or buyback. The Next Cup winner may be in here, you never know.";
$ShortD = "F1 Cross (Experimental) Seeds can be unpredictable. These will be very similar to one of the parents, or something in between.";
$query = "SELECT * FROM tbl_strains WHERE Species = 'X' AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "Other":
$Species = "Other"; $ILG = "GrowingUp.gif"; $SKU = "OTH-LIST";
$FullD = "These are generally something OTHER than THC-bearing cannabis seeds. Each Item is what it says it is. Be Kind, Have fun!";
$ShortD = "These are generally something OTHER than cannabis seeds, as described.";
$query = "SELECT * FROM tbl_strains WHERE Species = '' AND InStock = 1 ORDER BY Strain ASC";
break;
CASE "OnSale":
$Species = "Sale"; $ILG = "SweetAss.png"; $SKU = "SAL-LIST";
$FullD = "
echo $FullD; ?>