Butterfly Garden Plants

[insert_php]

// Make a MySQL Connection
mysql_connect(β€œlocalhost”, β€œnababutt_user”, β€œ361user”) or die(mysql_error());
mysql_select_db(β€œnababutt_test”) or die(mysql_error());

// Get record from the β€œplants” table
$result = mysql_query(β€œSELECT * β€œ.
β€œFROM plants β€œ.
β€œWHERE plants.id = ’43’ β€œ)
or die(mysql_error());
$row = mysql_fetch_array($result);

echo β€˜

β€˜;
echo $row[β€˜english_name’];
echo β€˜

β€˜;
echo β€˜

(β€˜;
echo $row[β€˜scientific_name’];
echo β€˜
)

β€˜;

echo β€˜

Other common names for this plant include β€˜;
echo $row[β€˜other_names’];
echo β€˜

β€˜;

echo β€˜General Information
β€˜;
echo β€˜Cultural Requirements
β€˜;
echo β€˜Native Range
β€˜;
echo β€˜Plant Rating
β€˜;
echo β€˜Plant Reviews
β€˜;
echo β€˜
β€˜;

echo β€˜General Informationβ€˜;
echo β€˜NABA_DividerBarβ€˜;
echo β€˜
β€˜;
echo β€˜β€˜;
echo $row[β€˜introduction’];
echo β€˜ View the life cycle of the Lyside Sulphur feeding on the native plant relative of Holywood, Guaiacum angustifolium: Lyside Sulphur Life Cycleβ€˜;
echo β€˜

β€˜;

echo β€˜Importance as a butterfly nectar source:β€˜;

echo β€˜
β€˜;

echo $row[β€˜butt_nectar_source’];

echo β€˜

β€˜;

echo β€˜Importance as a caterpillar food source:β€˜;

echo β€˜
β€˜;

echo $row[β€˜cat_food_source’];

echo β€˜

 

β€˜;

echo β€˜Cultural Requirementsβ€˜;

echo β€˜NABA_DividerBarβ€˜;

echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

USDA Hardiness Zone β€˜;
echo $row[β€˜usda’];
echo β€˜
Bloom Period β€˜;
echo $row[β€˜bloom_period’];
echo β€˜
Bloom Color β€˜;
echo $row[β€˜bloom_color’];
echo β€˜
Plant Height β€˜;
echo $row[β€˜height’];
echo β€˜
Plant Spread β€˜;
echo $row[β€˜spread’];
echo β€˜
Light Exposure β€˜;
echo $row[β€˜light’];
echo β€˜
Soil Moisture β€˜;
echo $row[β€˜moisture’];
echo β€˜
Animal/Disease Problems β€˜;
echo $row[β€˜problems’];
echo β€˜

β€˜;

echo β€˜

 

β€˜;
echo β€˜Native Rangeβ€˜;
echo β€˜NABA_DividerBarβ€˜;
echo β€˜
β€˜;

echo β€˜';
   echo $row['scientific_name'];
   echo 'β€˜;
echo β€˜

 

β€˜;
echo β€˜

 

β€˜; echo β€˜

 

β€˜;
echo β€˜

 

β€˜;
echo β€˜

 

β€˜;
echo β€˜

 

β€˜;
echo β€˜

 

β€˜;
echo β€˜

 

β€˜;
echo β€˜Plant Ratingβ€˜;
echo β€˜NABA_DividerBarβ€˜;
echo β€˜
β€˜;echo β€˜
β€˜;
echo β€˜
β€˜;
echo β€˜Plant rating scale ranges from 0 to 3. Plants rating 3 are the most useful for butterfly gardens. For more details on the ratings, see Native Plant Ratingsβ€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

β€˜;
echo β€˜

Garden Rating β€˜;
echo $row[β€˜garden_rating’];
echo β€˜
Nectar Rating β€˜;
echo $row[β€˜nectar_rating’];
echo β€˜
Caterpillar Rating β€˜;
echo $row[β€˜cat_rating’];
echo β€˜

β€˜;

echo β€˜

 

β€˜;

echo β€˜Plant Reviews
NABA_DividerBarβ€˜;

echo β€˜
β€˜;
echo $row[β€˜reviews’];

[/insert_php]