$ rails g model User
belongs_to
has_one
| <?php | |
| $fname = $_POST['pfname']; | |
| $lname = $_POST['plname']; | |
| $email = $_POST['pemail']; | |
| $address = $_POST['paddress']; | |
| $hphone = $_POST['hnumber']; | |
| $mphone = $_POST['mnumber']; | |
| $cfname = $_POST['cfname']; |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| //CSS | |
| """ | |
| - Add some settings - | |
| Log in to your sandbox account and get your API keys plus your merchant ID. | |
| """ | |
| BRAINTREE_PRODUCTION = False # We'll need this later to switch between the sandbox and live account | |
| BRAINTREE_MERCHANT_ID = “your_merchant_id” | |
| BRAINTREE_PUBLIC_KEY = “your_public_key” | |
| BRAINTREE_PRIVATE_KEY = “your_private_key” |
| /* | |
| * Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/ | |
| */ | |
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ | |
| } |