Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- if ($_POST[op] != "add")
- {
- $display_block = "<h1> add an entry</h1>
- <form method=\"post\"
- action=\"$_SERVER[PHP_SELF]\">
- <p><strong> First / Last names:</strong><br>
- <input type=\"text\" name=\"f_name\" size=30
- maxlength=75>
- <input type=\"text\" name=\"l_name\" size=30
- maxlength=75>
- <p> <strong> address:</strong><br>
- <input type=\"text\" name=\"address\" size=30
- <p> <strong> city/state/zip:</strong><br>
- <input type=\"text\" name=\"city\" size=30
- <input type=\"text\" name=\"state\" size=30
- <input type=\"text\" name=\"zipcode\" size=30
- <p><strong> address type:</strong><br>
- <input type=\"radio\" name=\"add_type\" value=\"home\" checked> home
- <input type=\"radio\" name=\"add_type\" value=\"work\"> work
- <input type=\"radio\" name=\"add_type\" value=\"other\"> other
- <p><strong> telephone number:</strong><br>
- <input type=\"text\" name=\"tel_number\" size=30 maxlength=25>
- <input type=\"radio\" name=\"tel_type\" value=\"home\" checked> home
- <input type=\"radio\" name=\"tel_type\" value=\"work\"> work
- <input type=\"radio\" name=\"tel_type\" value=\"other\"> other
- <p><strong> fax number:</strong><br>
- <input type=\"text\" name=\"fax_number\" size=30 maxlength=25>
- <input type=\"radio\" name=\"fax_type\" value=\"home\" checked> home
- <input type=\"radio\" name=\"fax_type\" value=\"work\"> work
- <input type=\"radio\" name=\"fax_type\" value=\"other\"> other
- <p><strong> email address:</strong><br>
- <input type=\"text\" name=\"email_address\" size=30 maxlength=150>
- <input type=\"radio\" name=\"email_type\" value=\"home\" checked> home
- <input type=\"radio\" name=\"email_type\" value=\"work\"> work
- <input type=\"radio\" name=\"email_type\" value=\"other\"> other
- <p><strong> personal note:</strong><br>
- <textarea name=\"note\" cols=35 rows=5 wrap=virtual>
- </textarea>
- <input type=\"hidden\" name=\"op\" value=\"add\">
- <p> <input type=\"submit\" name=\"submit\"
- value=\"add entry\"></p>
- </form>";
- } else if ($_POST[op] == "add"){
- if (($_POST[f_name] == "") || ($_POST[l_name] =="" )) {
- header ("location: addentry.php");
- exit;
- }
- $connect = mysql_connect ("", "", "")
- or die (mysql_error());
- mysql_select_db("sanded_dk",$connect) or die (mysql_error());
- $add_master = "insert info master_name
- values ('', now(),now(), '$_POST[f_name]',
- '$_POST[l_name]')";
- mysql_query($add_master) or die (mysql_error());
- $master_id = mysql_insert_id();
- if (($_POST[address]) || ($_POST[city])
- ($_POST[state]) || ($_POST[zipcode])) {
- $add_address = "insert into address values
- ('', $master_id, now(), now(),
- '$_POST[address]', ' $_POST[city]',
- '$_POST[state]', ' $_POST[zipcode]',
- '$_POST[add_type]') ";
- mysql_query ($add_address) or die (mysql_error());
- }
- if ($_POST[tel_number]) {
- $add_tel = "insert into telephone values
- ('', $master_id, now(), now(),
- '$_POST[tel_number]', '$_POST[tel_type]')";
- mysql_query($add_tel) or die (mysql_error());
- }
- if ($_POST[fax_number]) {
- $add_fax = "insert into fax values
- ('', $master_id, now(), now(),
- '$_POST[fax_number]', '$_POST[fax_type]')";
- mysql_query($add_fax) or die (mysql_error());
- }
- if ($_POST[email]) {
- $add_email = "insert into email values
- ('', $master_id, now(), now(),
- '$_POST[email]', '$_POST[email_type]')";
- mysql_query($add_email) or die (mysql_error());
- }
- if ($_POST[note]) {
- $add_note = "insert into personal_notes values
- ('', $master_id, now(), now(),
- '$_POST[note]')";
- mysql_query($add_note) or die (mysql_error());
- }
- $display_block = "<h1> entry added </h1>
- <p> your entry has been added. would you like to
- <a href=\"addentry.php\"> add another </a>?</p>";
- }
- ?>
- <html>
- <head>
- <title> add an entry </title>
- </head>
- <body>
- <? print $display_block; ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement