Reflecting Britain logo
Show your support

$firstname=$_POST['firstname'];
$surname=$_POST['surname'];
$office=$_POST['office'];
$email=$_POST['email'];
$membership=$_POST['membership'];
$address1=$_POST['address1'];
$address2=$_POST['address2'];
$town=$_POST['town'];
$postcode=$_POST['postcode'];
$publish=$_POST['publish'];
$getmail=$_POST['getmail'];
$form=$_POST['form'];

if ($form=="yes")
{
if (empty($firstname))
{
echo '

Please include your first name.

‘;
$check = ‘fail’;
}
if (empty($surname))
{
echo ‘

Please include your surname.

‘;
$check = ‘fail’;
}
if (empty($email))
{
echo ‘

Please include your email address (we need this for verification purposes and will only use it to send information if you give us permission).

‘;
$check = ‘fail’;
}
if (empty($town))
{
echo ‘

Please include your town or county.

‘;
$check = ‘fail’;
}
if ($check!==’fail’)
{
$check=’pass’;

$query = “INSERT INTO supporters (firstname, surname, office, email, membership, address1, address2, town, postcode, publish, getmail) VALUES (’$firstname’, ‘$surname’, ‘$office’, ‘$email’, ‘$membership’, ‘$address1′, ‘$address2′, ‘$town’, ‘$postcode’, ‘$publish’, ‘$getmail’)”;
$result = mysql_query($query) or die (”Couldn’t execute query”);

echo ‘

Thank you for supporting our campaign!

‘;
if ($publish==”yes”)
{
echo ‘

We will add your name to the website soon, subject to verification.

‘;
}
}
} else {

echo ‘

Members of the Liberal Democrats can help this campaign by showing their support. If you agree with the statement below, fill in your contact details. We will be publishing a list of supporters on this website and the full list will be presented to the new leader Harrogate Conference in March.

‘;

echo ‘

The Liberal Democrat Parliamentary Party needs to reflect Britain better. We should work towards at least 1 new black or minority ethnic MP and at least 40% of new MPs and 25% of the Parliamentary Party overall being female after the next General Election. To help achieve this goal, I support the work of the Gender Balance Task Force and the Ethnic Minority Election Task Force in mentoring, training and supporting new parliamentary candidates.

‘;

echo ‘Note to MPs, Peers, MEPs, MSPs, AMs and GLAMs: for security purposes please email your support to support@reflectingbritain.org.uk rather than using the form below. A short supportive statement for including on the site would be greatly appreciated! Thanks.‘;
}

if ($check!==’pass’)
{
echo ‘

First name
Surname
Office*
i.e. councillor, group leader, local party chair, etc.
Email address
Lib Dem membership number*
Address*
Town/county
Postcode*
Check here to allow us to publish your name, office and town/county on this website (we will not publish any other personal information)
Check here to receive news from the campaign via email

* Optional

‘;
}
?>