Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2010
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.00 KB | None | 0 0
  1. <?
  2. if ($_POST[op] != "add")
  3. {
  4.     $display_block = "<h1> add an entry</h1>
  5.    <form method=\"post\"
  6.    action=\"$_SERVER[PHP_SELF]\">
  7.    <p><strong> First / Last names:</strong><br>
  8.    <input type=\"text\" name=\"f_name\" size=30
  9.    maxlength=75>
  10.    <input type=\"text\" name=\"l_name\" size=30
  11.    maxlength=75>
  12.  
  13.    <p> <strong> address:</strong><br>
  14.    <input type=\"text\" name=\"address\" size=30
  15.  
  16.    <p> <strong> city/state/zip:</strong><br>
  17.    <input type=\"text\" name=\"city\" size=30
  18.    <input type=\"text\" name=\"state\" size=30
  19.    <input type=\"text\" name=\"zipcode\" size=30
  20.  
  21.  
  22.    <p><strong> address type:</strong><br>
  23.    <input type=\"radio\" name=\"add_type\" value=\"home\" checked> home
  24.    <input type=\"radio\" name=\"add_type\" value=\"work\"> work
  25.    <input type=\"radio\" name=\"add_type\" value=\"other\"> other
  26.  
  27.  
  28.  
  29.  
  30.    <p><strong> telephone number:</strong><br>
  31.    <input type=\"text\" name=\"tel_number\" size=30 maxlength=25>
  32.    <input type=\"radio\" name=\"tel_type\" value=\"home\" checked> home
  33.    <input type=\"radio\" name=\"tel_type\" value=\"work\"> work
  34.    <input type=\"radio\" name=\"tel_type\" value=\"other\"> other
  35.  
  36.  
  37.  
  38.  
  39.  
  40.    <p><strong> fax number:</strong><br>
  41.    <input type=\"text\" name=\"fax_number\" size=30 maxlength=25>
  42.    <input type=\"radio\" name=\"fax_type\" value=\"home\" checked> home
  43.    <input type=\"radio\" name=\"fax_type\" value=\"work\"> work
  44.    <input type=\"radio\" name=\"fax_type\" value=\"other\"> other
  45.  
  46.  
  47.  
  48.  
  49.  
  50.    <p><strong> email address:</strong><br>
  51.    <input type=\"text\" name=\"email_address\" size=30 maxlength=150>
  52.    <input type=\"radio\" name=\"email_type\" value=\"home\" checked> home
  53.    <input type=\"radio\" name=\"email_type\" value=\"work\"> work
  54.    <input type=\"radio\" name=\"email_type\" value=\"other\"> other
  55.  
  56.  
  57.  
  58.  
  59.  
  60.    <p><strong> personal note:</strong><br>
  61.    <textarea name=\"note\" cols=35 rows=5 wrap=virtual>
  62.    </textarea>
  63.    <input type=\"hidden\" name=\"op\" value=\"add\">
  64.  
  65.    <p> <input type=\"submit\" name=\"submit\"
  66.    value=\"add entry\"></p>
  67.    </form>";
  68.    
  69. } else if ($_POST[op] == "add"){
  70.    
  71.     if (($_POST[f_name] == "") || ($_POST[l_name] =="" )) {
  72.         header ("location: addentry.php");
  73.         exit;
  74. }
  75.        
  76.        
  77.         $connect = mysql_connect ("", "", "")
  78.         or die (mysql_error());
  79.         mysql_select_db("sanded_dk",$connect) or die (mysql_error());
  80.        
  81.        
  82.         $add_master = "insert info master_name
  83.        values ('', now(),now(), '$_POST[f_name]',
  84.                                        '$_POST[l_name]')";
  85.         mysql_query($add_master) or die (mysql_error());
  86.        
  87.        
  88.         $master_id = mysql_insert_id();
  89.        
  90.         if (($_POST[address]) || ($_POST[city])
  91.                                         ($_POST[state]) || ($_POST[zipcode])) {
  92.            
  93.             $add_address = "insert into address values
  94.            ('', $master_id, now(), now(),
  95.                                        '$_POST[address]', ' $_POST[city]',
  96.                                        '$_POST[state]', ' $_POST[zipcode]',
  97.                                        '$_POST[add_type]') ";
  98.             mysql_query ($add_address) or die (mysql_error());
  99.         }
  100.        
  101.         if ($_POST[tel_number]) {
  102.            
  103.             $add_tel = "insert into telephone values
  104.            ('', $master_id, now(), now(),
  105.                                        '$_POST[tel_number]', '$_POST[tel_type]')";
  106.             mysql_query($add_tel) or die (mysql_error());
  107.         }
  108.        
  109.                 if ($_POST[fax_number]) {
  110.            
  111.             $add_fax = "insert into fax values
  112.            ('', $master_id, now(), now(),
  113.                                        '$_POST[fax_number]', '$_POST[fax_type]')";
  114.             mysql_query($add_fax) or die (mysql_error());
  115.                 }
  116.                
  117.                         if ($_POST[email]) {
  118.            
  119.             $add_email = "insert into email values
  120.            ('', $master_id, now(), now(),
  121.                                        '$_POST[email]', '$_POST[email_type]')";
  122.             mysql_query($add_email) or die (mysql_error());
  123.                         }
  124.                        
  125.                                 if ($_POST[note]) {
  126.            
  127.             $add_note = "insert into personal_notes values
  128.            ('', $master_id, now(), now(),
  129.                                        '$_POST[note]')";
  130.             mysql_query($add_note) or die (mysql_error());
  131.                                 }
  132.                                
  133.                                 $display_block = "<h1> entry added </h1>
  134.                                <p> your entry has been added. would you like to
  135.                                <a href=\"addentry.php\"> add another </a>?</p>";
  136. }
  137. ?>
  138. <html>
  139. <head>
  140. <title> add an entry </title>
  141. </head>
  142. <body>
  143. <? print $display_block; ?>
  144. </body>
  145. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement