First, Lets find out what version of PHP we're running (To find out if it's the default version).
To do that, Within the terminal, Fire this command:
which php
jQuery(document).ready(function($) { | |
/** Insert Code Here */ | |
}); |
<form action="form-submission.cfm"></form> | |
<!--Using the variables from form.html--> | |
<form action="form-submission.cfm" method="get"></form> | |
<!-- | |
WHEN TO USE GET | |
If the form submission is passive (like a search engine query), and without sensitive information.--> | |
<form action="form-submission.cfm" method="post"></form> |
export PATH=/Applications/MAMP/bin/php/php5.6.10/bin:$PATH
@mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
@if $inset { | |
-webkit-box-shadow:inset $top $left $blur $color; | |
-moz-box-shadow:inset $top $left $blur $color; | |
box-shadow:inset $top $left $blur $color; | |
} @else { | |
-webkit-box-shadow: $top $left $blur $color; | |
-moz-box-shadow: $top $left $blur $color; | |
box-shadow: $top $left $blur $color; | |
} |
/*jslint node: true */ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
sass: { | |
dist: { | |
options: { | |
/** Only use include_paths if extracting elements from Bower */ | |
includePaths: ['bower_components/bootstrap-sass/assets/stylesheets'], |
/*jslint node: true */ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
sass: { | |
dist: { | |
options: { | |
loadPath: ['bower_components/foundation-sites/scss'], | |
outputStyle: 'expanded', |
/*jslint node: true */ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
php: { | |
dist: { | |
options: { | |
port: '?' | |
} |
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" /> |
<form id="webForm" method="POST"> | |
<div class="header"> | |
<h3>Register</h3> | |
</div> | |
<div class="input-frame"> | |
<label for="firstName">First Name:</label> | |
<input name="firstName" id="firstName" type="text" class="required" /> | |
</div> | |
<div class="input-frame"> | |
<label for="lastName">Last Name:</label> |