No, here's what is for new_entry2.php
<?php
include ("dbconnect_test.php");
$sql = "INSERT INTO tbl_members (name,chapter,position,category,business_name,address1,address2,city,state,zip,phone,fax,e_mail,web_address) VALUES ('$name','$chapter','$position','$category','$business_name','$address1','$address2','$city','$state','$zip','$phone','$fax','$e-mail','$web_address')";
$result = mysql_query($sql);
include ("members_list.php");
?>