Changeset 131
- Timestamp:
- 10/19/06 15:58:01
- Files:
-
- trunk/phpbms/common/stylesheet/mozilla/forms.css (modified) (2 diffs)
- trunk/phpbms/common/stylesheet/mozilla/pages/client.css (added)
- trunk/phpbms/help/customize.php (deleted)
- trunk/phpbms/help/index.php (modified) (1 diff)
- trunk/phpbms/help/shortcuts.php (modified) (2 diffs)
- trunk/phpbms/include/fields.php (modified) (2 diffs)
- trunk/phpbms/index.php (modified) (2 diffs)
- trunk/phpbms/info.php (modified) (1 diff)
- trunk/phpbms/modules/base/adminsettings.php (modified) (1 diff)
- trunk/phpbms/modules/bms/clients_addedit.php (modified) (4 diffs)
- trunk/phpbms/requirements.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/phpbms/common/stylesheet/mozilla/forms.css
r121 r131 80 80 .buttonFF{background:url(image/button-ff.png) 0 0 no-repeat;} 81 81 .buttonNew{background:url(image/button-new.png) 0 0 no-repeat;} 82 .buttonEmail{background:url(image/button-email.png) 0 0 no-repeat;} 82 83 .buttonEdit{background:url(image/button-edit.png) 0 0 no-repeat;} 83 84 .buttonEditDisabled{background:url(image/button-edit-disabled.png) 0 0 no-repeat;} … … 93 94 .buttonDown{background:url(image/button-down.png) 0 0 no-repeat;} 94 95 .buttonDownDisabled{background:url(image/button-down-disabled.png) 0 0 no-repeat;} 96 .buttonWWW{background:url(image/button-www.png) 0 0 no-repeat;} 95 97 96 98 .buttonShowSQLUp{width:35px;background:url(image/button-sql-up.png) 0 0 no-repeat;} trunk/phpbms/help/index.php
r93 r131 8 8 <title>phpBMS Resources</title> 9 9 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 10 <link href="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 11 <style> 12 li{margin-bottom:10px;} 13 </style> 10 <?php require("head.php")?> 14 11 </head> 15 12 trunk/phpbms/help/shortcuts.php
r12 r131 9 9 <title><?php echo $pageTitle?></title> 10 10 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 11 <link href="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 12 <style>li{margin-bottom:10px;}</style> 13 <script language="JavaScript" src="<?php echo $_SESSION["app_path"]?>common/javascript/common.js" type="text/javascript" ></script> 14 <script language="javascript"> 15 function navTo(){ 16 var theselect=getObjectFromID("navselect"); 17 document.location=theselect.value; 18 } 19 </script> 11 <?php require("../head.php")?> 20 12 </head> 21 13 … … 23 15 <div class="bodyline" style="width:700px;"> 24 16 <h1><?php echo $pageTitle?></h1> 25 <div style="float:right">26 <select id="navselect">27 <option value="">choose...</option>28 <option value="<?php echo $_SESSION["app_path"]?>help/reference">Using phpBMS</option>29 <option value="http://www.kreotek.com/products/phpbms/tutorials">Tutorials</option>30 <option value="<?php echo $_SESSION["app_path"]?>help/customize.php">Customizing phpBMS</option>31 <option value="<?php echo $_SESSION["app_path"]?>help/shortcuts.php">Keyboard Shortcuts</option>32 <option value="<?php echo $_SESSION["app_path"]?>info.php">About phpBMS</option>33 </select>34 <input type="button" class="Buttons" value="go" onClick="navTo()"/>35 </div>36 17 37 18 <h2>List/Search Screens</h2> trunk/phpbms/include/fields.php
r117 r131 170 170 ?><input name="<?php echo $name?>" id="<?php echo $name?>" type="text" value="<?php echo $value?>" <?php 171 171 if ($attributes) foreach($attributes as $attribute => $tvalue) echo " ".$attribute."=\"".$tvalue."\""; 172 ?> /><button id="<?php echo $name?>Button" type="button" style="vertical-align:middle;" class="invisibleButtons" onClick="openEmail('<?php echo $name?>')" title="Send E-Mail"><img src="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/image/button-email.png" align="absmiddle" alt="send email" width="16" height="16" border="0" /></button>172 ?> /><button id="<?php echo $name?>Button" type="button" class="graphicButtons buttonEmail" onclick="openEmail('<?php echo $name?>')" title="Send E-Mail"><span>send e-mail</span></button> 173 173 <script language="JavaScript">emailArray[emailArray.length]=new Array('<?php echo $name?>','One or more e-mail fields are invalid.');</script><?php 174 174 } … … 187 187 ?><input name="<?php echo $name?>" id="<?php echo $name?>" type="text" value="<?php echo $value?>" <?php 188 188 if ($attributes) foreach($attributes as $attribute => $tvalue) echo " ".$attribute."=\"".$tvalue."\""; 189 ?> /><button id="<?php echo $name?>Button" type="button" class=" invisibleButtons" onClick="openWebpage('<?php echo $name?>')" title="Open in New Window"><img src="<?php echo $_SESSION["app_path"] ?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/image/button-www.png" align="absmiddle" alt="link" width="16" height="16" border="0" /></button>189 ?> /><button id="<?php echo $name?>Button" type="button" class="graphicButtons buttonWWW" onclick="openWebpage('<?php echo $name?>')" title="Visit site in new window"><span>visit site</span></button> 190 190 <script language="JavaScript">wwwArray[wwwArray.length]=new Array('<?php echo $name?>','One or more web page fields are invalid.');</script> 191 191 <?php trunk/phpbms/index.php
r117 r131 38 38 require_once("include/common_functions.php"); 39 39 require_once("include/login_include.php"); 40 41 if(!isset($_SESSION["app_path"])) 40 42 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 41 43 <html xmlns="http://www.w3.org/1999/xhtml"> … … 43 45 <title><?PHP echo $_SESSION["application_name"]; ?> - Login Page</title> 44 46 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 45 <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 47 48 <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 46 49 <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/pages/login.css" rel="stylesheet" type="text/css" /> 47 50 <script language="javascript" src="common/javascript/common.js"></script> trunk/phpbms/info.php
r121 r131 63 63 <title>phpBMS Information</title> 64 64 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 65 <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 66 <style> 67 li{margin-bottom:4px;} 68 </style> 65 <?php require("head.php")?> 69 66 </head> 70 67 trunk/phpbms/modules/base/adminsettings.php
r98 r131 49 49 <title><?php echo $pageTitle ?></title> 50 50 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 51 < link href="<?php echo $_SESSION["app_path"] ?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" />51 <?php require("../../head.php")?> 52 52 <script language="JavaScript" src="../../common/javascript/fields.js"></script> 53 53 <script language="JavaScript" src="../../common/javascript/autofill.js"></script> trunk/phpbms/modules/bms/clients_addedit.php
r65 r131 46 46 $pageTitle="Inactive ".$pageTitle; 47 47 48 ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">49 <html >48 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 49 <html xmlns="http://www.w3.org/1999/xhtml"> 50 50 <head> 51 51 <title><?php echo $pageTitle ?></title> 52 52 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 53 <link href="../../common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css"> 53 <?php require("../../head.php")?> 54 <link href="../../common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/pages/client.css" rel="stylesheet" type="text/css"> 54 55 <script language="JavaScript" src="javascript/client.js"></script> 55 <script language="JavaScript" src="../../common/javascript/common.js"></script>56 56 <script language="JavaScript" src="../../common/javascript/fields.js"></script> 57 57 <script language="JavaScript" src="../../common/javascript/choicelist.js"></script> … … 63 63 <?php client_tabs("General",$therecord["id"]); ?> 64 64 <div class="bodyline"> 65 <div style="float:right;width:200px;">65 <div id="topButtons"> 66 66 <?php showSaveCancel(1); ?> 67 67 <?php if(isset($_GET["invoiceid"])){?> 68 <div>69 <input name="gotoinvoice" type="button" value="back to order" onClick="location.href='<?php echo getAddEditFile(3) ?>?id=<?php echo $_GET["invoiceid"] ?>'" style="width:100%" class="Buttons">70 </div>68 <div> 69 <input name="gotoinvoice" type="button" value="back to order" onClick="location.href='<?php echo getAddEditFile(3) ?>?id=<?php echo $_GET["invoiceid"] ?>'" style="width:100%" class="Buttons"> 70 </div> 71 71 <?php } ?> 72 </div> 73 74 <h1 id="h1Title"><span><?php echo $pageTitle ?></span></h1> 75 76 <div id="rightSideDiv"> 72 77 <fieldset> 73 78 <legend>attributes</legend> 74 <label for="id">id<br /> 75 <input name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="true" class="uneditable" style="width:98%" tabindex="-1" /> 76 </label> 77 <label for="type" class="important">type<br /> 79 <p> 80 <label for="id">id</label><br /> 81 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="true" class="uneditable" tabindex="-1" /> 82 </p> 83 84 <p> 85 <label for="type" class="important">type</label><br /> 78 86 <?PHP 79 87 $disabled="noDisable"; … … 81 89 if(checkForInvoices($therecord["id"])) 82 90 $disabled="disabled"; 83 basic_choicelist("type",$therecord["type"],Array(Array("name"=>"prospect","value"=>"prospect"),Array("name"=>"client","value"=>"client")),Array(" style"=>"width:180px;","class"=>"important","tabindex"=>5,$disabled=>"true","onChange"=>"changeClientType(this)"));91 basic_choicelist("type",$therecord["type"],Array(Array("name"=>"prospect","value"=>"prospect"),Array("name"=>"client","value"=>"client")),Array("class"=>"important","tabindex"=>5,$disabled=>"true","onChange"=>"changeClientType(this)")); 84 92 ?> 85 </label> 86 <label for="inactive" class="important" style="padding-top:6px"> 87 <?PHP field_checkbox("inactive",$therecord["inactive"],false,Array("tabindex"=>"4"))?>inactive 88 </label> 89 <label id="becameclientDiv" for="becameclient" <?php if($therecord["type"]=="prospect") echo "style=\"display:none;\"" ?>> 90 became a client<br /> 91 <input type="text" id="becameclient" name="becameclient" readonly="true" class="uneditable" value="<?php echo $therecord["becameclient"]?>" size="8" style="width:98%"> 92 </label> 93 <label for="category"> 94 category<br /> 95 <?PHP choicelist("category",$therecord["category"],"clientcategories",array("style"=>"width:180px","tabindex"=>"5")); ?> 96 </label> 93 </p> 94 95 <p> 96 <?PHP field_checkbox("inactive",$therecord["inactive"],false,Array("tabindex"=>"4"))?><label for="inactive" class="important">inactive</label> 97 </p> 98 99 <p id="becameclientDiv" <?php if($therecord["type"]=="prospect") echo "style=\"display:none;\"" ?>> 100 <label for="becameclient">became a client</label><br /> 101 <input type="text" id="becameclient" name="becameclient" readonly="true" class="uneditable" value="<?php echo $therecord["becameclient"]?>" size="8"> 102 </p> 103 104 <p> 105 <label for="category">category</label><br /> 106 <?PHP choicelist("category",$therecord["category"],"clientcategories",array("tabindex"=>"5")); ?> 107 </p> 97 108 98 109 </fieldset> … … 100 111 <fieldset> 101 112 <legend>sales</legend> 102 <label for="ds-salesmanagerid">sales manager<br /> 103 <?PHP autofill("salesmanagerid",$therecord["salesmanagerid"],9,"users.id","concat(users.firstname,\" \",users.lastname)","\"\"","users.revoked=0 AND users.id > 1",Array("style"=>"width:98%;","maxlength"=>"64","tabindex"=>"25")) ?> 104 </label> 105 <label for="leadsource">lead source<br> 106 <?PHP choicelist("leadsource",$therecord["leadsource"],"leadsource",Array("tabindex"=>"26","class"=>"small","style"=>"width:170px")); ?> 107 </label> 113 <div class="fauxP"> 114 <label for="ds-salesmanagerid">sales manager</label><br /> 115 <?PHP autofill("salesmanagerid",$therecord["salesmanagerid"],9,"users.id","concat(users.firstname,\" \",users.lastname)","\"\"","users.revoked=0 AND users.id > 1",Array("maxlength"=>"64","tabindex"=>"25")) ?> 116 </div> 117 118 <p> 119 <label for="leadsource">lead source</label><br /> 120 <?PHP choicelist("leadsource",$therecord["leadsource"],"leadsource",Array("tabindex"=>"26","class"=>"small")); ?> 121 </p> 108 122 </fieldset> 109 123 110 124 <fieldset> 111 125 <legend>defaults</legend> 112 <label for="paymentmethod">payment type<br /> 113 <?PHP choicelist("paymentmethod",$therecord["paymentmethod"],"paymentmethod",Array("style"=>"width:170px;","tabindex"=>"27")); ?> 114 </label> 115 <label for="ccnumber">credit card number<br /> 116 <input id="ccnumber" name="ccnumber" type="text" value="<?PHP echo htmlQuotes($therecord["ccnumber"]) ?>" size="22" maxlength="32" style="width:98%" tabindex="28"/> 117 </label> 118 <label for="ccexpiration">credit card expiration<br /> 126 <p> 127 <label for="paymentmethod">payment type</label><br /> 128 <?PHP choicelist("paymentmethod",$therecord["paymentmethod"],"paymentmethod",Array("tabindex"=>"27")); ?> 129 </p> 130 131 <p> 132 <label for="ccnumber">credit card number</label><br /> 133 <input id="ccnumber" name="ccnumber" type="text" value="<?PHP echo htmlQuotes($therecord["ccnumber"]) ?>" size="22" maxlength="32" tabindex="28"/> 134 </p> 135 136 <p> 137 <label for="ccexpiration">credit card expiration</label><br /> 119 138 <input id="ccexpiration" name="ccexpiration" type="text" value="<?PHP echo htmlQuotes($therecord["ccexpiration"]) ?>" size="7" maxlength="7" tabindex="29"/> 120 </label> 121 <label for="taxareaid-ds">tax area<br /> 122 <?PHP autofill("taxareaid",$therecord["taxareaid"],6,"tax.id","tax.name","concat(tax.percentage,\"%\")","",Array("size"=>"20","maxlength"=>"64","tabindex"=>"25","style"=>"width:98%"),0) ?> 123 </label> 139 </p> 140 141 <div class="fauxP"> 142 <label for="ds-taxareaid">tax area</label><br /> 143 <?PHP autofill("taxareaid",$therecord["taxareaid"],6,"tax.id","tax.name","concat(tax.percentage,\"%\")","",Array("size"=>"20","maxlength"=>"64","tabindex"=>"25"),0) ?> 144 </div> 124 145 </fieldset> 125 146 </div> 126 147 127 <div style="margin-right:204px;"> 128 <h1><?php echo $pageTitle ?></h1> 148 <div id="leftSideDiv"> 129 149 <fieldset> 130 150 <legend>name / company</legend> 131 <table border="0" cellpadding="0" cellspacing="0" class="recordtable"> 132 <tr> 133 <td nowrap> 134 <label for="firstname" class="important">first name<br /> 135 <input name="firstname" id="firstname" type="text" value="<?php echo htmlQuotes($therecord["firstname"])?>" size="32" maxlength="65" class="important" style="font-weight:bold;" tabindex=1;/> 136 <script language="javascript">var thefirstname=getObjectFromID("firstname");thefirstname.focus()</script> 137 </label> 138 </td> 139 <td nowrap> 140 <label for="lastname" class="important">last name<br /> 141 <input id="lastname" name="lastname" type="text" value="<?php echo htmlQuotes($therecord["lastname"])?>" size="32" maxlength="65" class="important" style="font-weight:bold;"i tabindex=2 /> 142 </label> 143 </td> 144 </tr> 145 </table> 146 <label for="company" class="important">company<br /> 151 <p id="firstnameP"> 152 <label for="firstname" class="important">first name</label><br /> 153 <input name="firstname" id="firstname" type="text" value="<?php echo htmlQuotes($therecord["firstname"])?>" size="32" maxlength="65" class="important" tabindex=1;/> 154 <script language="javascript">var thefirstname=getObjectFromID("firstname");thefirstname.focus()</script> 155 </p> 156 <p> 157 <label for="lastname" class="important">last name</label><br /> 158 <input id="lastname" name="lastname" type="text" value="<?php echo htmlQuotes($therecord["lastname"])?>" size="32" maxlength="65" class="important" tabindex=2 /> 159 </p> 160 <p> 161 <label for="company" class="important">company</label><br /> 147 162 <input name="company" type="text" id="company" value="<?php echo htmlQuotes($therecord["company"])?>" size="71" maxlength="128" class="important" tabindex=3 /> 148 </ label>163 </p> 149 164 </fieldset> 150 165 151 166 <fieldset> 152 167 <legend>contact</legend> 153 <table border="0" cellpadding="0" cellspacing="0" class="recordtable"> 154 <tr> 155 <td nowrap> 156 <label for="workphone">work phone<br /> 157 <?PHP field_text("workphone",$therecord["workphone"],0,"Work phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"6","size"=>"25","maxlength"=>"32")); ?> 158 </label> 159 </td> 160 <td nowrap> 161 <label for="homephone">home phone<br /> 162 <?PHP field_text("homephone",$therecord["homephone"],0,"Home phone must be in valid format.<br /><em>(example: 505-994-6388)</em>)","phone",Array("tabindex"=>"7","size"=>"25","maxlength"=>"32")); ?> 163 </label> 164 </td> 165 </tr><tr> 166 <td nowrap> 167 <label for="mobilephone">mobile phone<br /> 168 <?PHP field_text("mobilephone",$therecord["mobilephone"],0,"Mobile phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"8","size"=>"25","maxlength"=>"32")); ?> 169 </label> 170 </td> 171 <td> 172 <label for="fax">fax number <br /> 173 <?PHP field_text("fax",$therecord["fax"],0,"Fax number must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"9","size"=>"25","maxlength"=>"32")); ?> 174 </label> 175 </td> 176 </tr> 177 </table> 178 <label for="otherphone">other phone<br /> 179 <?PHP field_text("otherphone",$therecord["otherphone"],0,"Other phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"10","size"=>"25","maxlength"=>"32")); ?> 180 </label> 181 <label for="email" style="margin-top:10px;">e-mail address <br /> 168 <p class="phonelefts"> 169 <label for="workphone">work phone</label><br /> 170 <?PHP field_text("workphone",$therecord["workphone"],0,"Work phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"6","size"=>"25","maxlength"=>"32")); ?> 171 </p> 172 173 <p> 174 <label for="homephone">home phone</label><br /> 175 <?PHP field_text("homephone",$therecord["homephone"],0,"Home phone must be in valid format.<br /><em>(example: 505-994-6388)</em>)","phone",Array("tabindex"=>"7","size"=>"25","maxlength"=>"32")); ?> 176 </p> 177 178 <p class="phonelefts"> 179 <label for="mobilephone">mobile phone</label><br /> 180 <?PHP field_text("mobilephone",$therecord["mobilephone"],0,"Mobile phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"8","size"=>"25","maxlength"=>"32")); ?> 181 </p> 182 183 <p> 184 <label for="fax">fax number</label><br /> 185 <?PHP field_text("fax",$therecord["fax"],0,"Fax number must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"9","size"=>"25","maxlength"=>"32")); ?> 186 </p> 187 188 <p> 189 <label for="otherphone">other phone</label><br /> 190 <?PHP field_text("otherphone",$therecord["otherphone"],0,"Other phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"10","size"=>"25","maxlength"=>"32")); ?> 191 </p> 192 193 <p> 194 <label for="email">e-mail address</label><br /> 182 195 <?PHP field_email("email",$therecord["email"],Array("tabindex"=>"11","size"=>"68","maxlength"=>"128")); ?> 183 </label> 184 <label for="webaddress">web address<br /> 196 </p> 197 198 <p> 199 <label for="webaddress">web site</label><br /> 185 200 <?PHP field_web("webaddress",$therecord["webaddress"],Array("tabindex"=>"12","size"=>"68","maxlength"=>"128")); ?> 186 </ label>201 </p> 187 202 </fieldset> 188 203 189 204 <fieldset> 190 205 <legend><label for="address1">billing / main address</label></legend> 191 < div>206 <p><br /> 192 207 <input id="address1" name="address1" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["address1"])?>" tabindex="13"/><br /> 193 <input id="address2" name="address2" type="text" size="71" maxlength="128" style="margin-top:2px;" value="<?PHP echo htmlQuotes($therecord["address2"])?>" tabindex="14"/> 194 </div> 195 <table border="0" cellpadding="0" cellspacing="0"> 196 <tr> 197 <td nowrap> 198 <label for="city">city<br /> 199 <input name="city" type="text" id="city" value="<?php echo htmlQuotes($therecord["city"])?>" size="35" maxlength="64" tabindex="15"/> 200 </label> 201 </td> 202 <td nowrap > 203 <label for="state">state/province<br /> 204 <input name="state" type="text" id="state" value="<?php echo htmlQuotes($therecord["state"])?>" size="2" maxlength="2" tabindex="16" /> 205 </label> 206 </td> 207 <td nowrap> 208 <label for="postalcode">zip/postal code<br /> 209 <input name="postalcode" type="text" id="postalcode" value="<?php echo htmlQuotes($therecord["postalcode"])?>" size="12" maxlength="15" tabindex="17"/> 210 </label> 211 </td> 212 </tr> 213 </table> 214 <label for="country" >country<br /> 208 <input id="address2" name="address2" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["address2"])?>" tabindex="14"/> 209 </p> 210 211 <p class="csz"> 212 <label for="city">city</label><br /> 213 <input name="city" type="text" id="city" value="<?php echo htmlQuotes($therecord["city"])?>" size="35" maxlength="64" tabindex="15"/> 214 </p> 215 216 <p class="csz"> 217 <label for="state">state/province</label><br /> 218 <input name="state" type="text" id="state" value="<?php echo htmlQuotes($therecord["state"])?>" size="2" maxlength="2" tabindex="16" /> 219 </p> 220 <p> 221 <label for="postalcode">zip/postal code</label><br /> 222 <input name="postalcode" type="text" id="postalcode" value="<?php echo htmlQuotes($therecord["postalcode"])?>" size="12" maxlength="15" tabindex="17" /> 223 </p> 224 <p> 225 <label for="country">country</label><br /> 215 226 <input id="country" name="country" type="text" value="<?PHP echo htmlQuotes($therecord["country"])?>" size="44" maxlength="128" tabindex="18"/> 216 </label> 227 </p> 228 217 229 </fieldset> 218 230 219 231 <fieldset> 220 232 <legend><label for="shiptoaddress1">shipping address</label></legend> 221 < div class="notes" style="padding-top:0px;padding-bottom:0px;">(if different from billing/main address)</div>222 <div>233 <p> 234 <span class="notes">(if different from billing/main address)</span><br /> 223 235 <input id="shiptoaddress1" name="shiptoaddress1" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["shiptoaddress1"])?>" tabindex="19" /><br /> 224 <input id="shiptoaddress2" name="shiptoaddress2" type="text" size="71" maxlength="128" style="margin-top:2px;" value="<?PHP echo htmlQuotes($therecord["shiptoaddress2"])?>" tabindex="20"/>225 </ div>226 <table border="0" cellpadding="0" cellspacing="0"> 227 <tr>228 <td nowrap>229 <label for="shiptocity">city<br />230 <input id="shiptocity" name="shiptocity" type="text" value="<?php echo htmlQuotes($therecord["shiptocity"])?>" size="35" maxlength="64" tabindex="21"/>231 </label> 232 </td><td nowrap>233 <label for="shiptostate">state/province<br />234 <input id="shiptostate" name="shiptostate" type="text" value="<?php echo htmlQuotes($therecord["shiptostate"])?>" size="2" maxlength="2" tabindex="22"/>235 </label>236 </td><td nowrap>237 <label for="shiptopostalcode">zip/postal code<br />238 <input id="shiptopostalcode" name="shiptopostalcode" type="text" value="<?php echo htmlQuotes($therecord["shiptopostalcode"])?>" size="12" maxlength="15" tabindex="23"/>239 </label>240 </td>241 </tr>242 </table>243 <label for="shiptocountry">country<br />244 <input id="shiptocountry" name="shiptocountry" type="text" value="<?PHP echo htmlQuotes($therecord["shiptocountry"])?>" size="44" maxlength="128" tabindex="24"/>245 </label>246 </fieldset>236 <input id="shiptoaddress2" name="shiptoaddress2" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["shiptoaddress2"])?>" tabindex="20" /> 237 </p> 238 239 <p class="csz"> 240 <label for="shiptocity">city</label><br /> 241 <input id="shiptocity" name="shiptocity" type="text" value="<?php echo htmlQuotes($therecord["shiptocity"])?>" size="35" maxlength="64" tabindex="21" /> 242 </p> 243 244 <p class="csz"> 245 <label for="shiptostate">state/province</label><br /> 246 <input id="shiptostate" name="shiptostate" type="text" value="<?php echo htmlQuotes($therecord["shiptostate"])?>" size="2" maxlength="2" tabindex="22" /> 247 </p> 248 249 <p> 250 <label for="shiptopostalcode">zip/postal code</label><br /> 251 <input id="shiptopostalcode" name="shiptopostalcode" type="text" value="<?php echo htmlQuotes($therecord["shiptopostalcode"])?>" size="12" maxlength="15" tabindex="23" /> 252 </p> 253 <p> 254 <label for="shiptocountry">country</label><br /> 255 <input id="shiptocountry" name="shiptocountry" type="text" value="<?PHP echo htmlQuotes($therecord["shiptocountry"])?>" size="44" maxlength="128" tabindex="24"/> 256 </p> 257 </fieldset> 258 247 259 <fieldset> 248 260 <legend><label for="comments">memo</label></legend> 249 <div style="padding-top:0px;"><textarea name="comments" cols="20" rows="8" id="comments" style="width:98%" tabindex="30"><?php echo $therecord["comments"]?></textarea> 250 </div> 261 <p><br /> 262 <textarea name="comments" cols="20" rows="8" id="comments" style="width:98%" tabindex="30"><?php echo $therecord["comments"]?></textarea> 263 </p> 251 264 </fieldset> 252 265 trunk/phpbms/requirements.php
r77 r131 43 43 <title>phpBMS Browser Requirements</title> 44 44 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 45 < link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" />45 <?php require("head.php")?> 46 46 </head> 47 47