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 = ’36’ β€œ)
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 β€˜

Turkey Tangle Fogfruit ( Phyla nodiflora)
Turkey Tangle Fogfruit ( Phyla nodiflora)
β€˜;
echo $row[β€˜introduction’];

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 β€˜Plant Ratingβ€˜;
echo β€˜NABA_DividerBarβ€˜;
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]