-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.php
79 lines (58 loc) · 3.02 KB
/
add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
# Copyright (c) 2000 Eric Lease Morgan <[email protected]>
# Licensed under the GNU GPLv3 (http://www.gnu.org/licenses/gpl-3.0.html)
?>
<h1>Add a member</h1>
<?php
# check for form submital
if (! $submit) {
include "./add.inc";
}
else {
# make sure all fields have content
if ($first_name == ""
|| $last_name == ""
|| $address_1 == ""
|| $city == ""
|| $state == ""
|| $zip_code == ""
|| $email == ""
#|| $telephone == ""
#|| $employer == ""
#|| $occupation == ""
#|| $birth_year == ""
) {
# error
$error = "At least one of the required inputs was not supplied.";
include "./error.inc";
}
# insert into database
else {
# create a member id based on the time
$member_id = time();
# great, create an sql query and execute it
$sql = "INSERT INTO member_list
(member_id, first_name, last_name, address_1, address_2, city, state, zip_code, email, telephone, employer, occupation, birth_year, id_equals_date)
VALUES
('$member_id', '$first_name', '$last_name', '$address_1', '$address_2', '$city', '$state', '$zip_code', '$email', '$telephone', '$employer', '$occupation', '$birth_year', 'Y')";
mysql_query ($sql);
# uncomment for debuggin' purposes
#echo mysql_errno().": ".mysql_error()."<BR>"; echo "<pre>$sql</pre>";
# get the id of the newly created record
#$i = mysql_insert_id();
# done
# email info to them.
echo "<p> Emailing information to " . $last_name . ", " . $first_name . " at ". $email . "...";
$message = "Dear ".$first_name." ".$last_name." - \n";
$message = $message."\nThis is a email reminder of your TriLUG membership\ninformation. It is sent to all members at least once,\nto send important registration information, or when a\nmember requests that we send them their current information.\n\nYou membership information follows : \nName : ".$first_name." ".$last_name."\nMember ID : ".$member_id."\nemail : ".$email."\n\nIf this information is incomplete or out of date\nPlease contact the steering committee as soon as\nyou are able to update your records.\n\nThank you,\nTriLUG Steering Committee\n";
$mailed_id = mail($email,"Your TriLUG membership information", $message,"From:[email protected]\nReply-to:[email protected]");
if ($mailed_id) {
echo "succeeded";
} else {
echo "failed";
}
echo "</p>\n";
echo "<p>Added. The new member's name is <b>$first_name $last_name</b>, and their member ID number is <b>#$member_id</b>. <a href=./?cmd=displayone&id=$member_id>Edit their record</a>.</p>";
}
}
?>