Native Trees, Shrubs, and Vines for Butterfly Gardens

in Northern New Jersey and New York City

Native trees, shrubs, and vines provide structure and visual excitement in a butterfly garden. At the same time, they provide food and nectar that are essential to helping butterflies thrive and reproduce.  The plants listed in the table below have been selected and rated by NABA members as important native trees, shrubs, and vines for butterfly gardening in the northern New Jersey/New York City area.

A butterfly garden should contain plants that provide food for all stages of a butterfly’s life. Caterpillars require very specific plants for food and butterflies need nectar from flowers. Choosing a variety plants from the list below will increase the chances that butterflies commonly found in your area will be able to reproduce in your garden.

[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 records from the “guides” and “plants” tables
$result = mysql_query(“SELECT plants.english_name, plants.scientific_name, plants.plant_type, plants.plant_url, guides.cat_food “.
“FROM plants, guides “.
“WHERE (guides.guide_name = ‘Northern New Jersey and New York City’ AND plants.id = guides.plant_id )”.
“AND (plants.plant_type LIKE ‘%tree%’ OR plants.plant_type LIKE ‘%shrub%’ OR plants.plant_type LIKE ‘%vine%’) “.
“ORDER BY plants.english_name”)
or die(mysql_error());

echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;

while($row = mysql_fetch_array($result)){
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;
}

echo ‘

English NameScientific NamePlant TypeCaterpillar Food for:
‘;
echo ‘‘;
echo $row[‘english_name’];
echo ‘
‘;
echo $row[‘scientific_name’];
echo ‘
‘;
echo $row[‘plant_type’];
echo ‘
‘;
echo $row[‘cat_food’];
echo ‘

‘;

[/insert_php]

 

NABA_DividerBar