This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Install NGINX | |
| $ sudo yum install nginx -y | |
| ## Install PHP and PHP-FPM | |
| $ sudo yum install php -y | |
| $ sudo yum install php-fpm -y | |
| ## Configure NGINX (see below) | |
| $ sudo nano /etc/nginx/conf.d/default.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ca.uwo.csd.cs2212.USERNAME; | |
| public class BankAccount { | |
| private double balance; | |
| public BankAccount(double balance) { | |
| this.balance = balance; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="control-group"> | |
| <label class="control-label">Location</label> | |
| <div class="controls"> | |
| <input name="location" type="text" placeholder="City, State, Country" value=""> | |
| <input name="location_city" type="hidden" value=""> | |
| <input name="location_state" type="hidden" value=""> | |
| <input name="location_country" type="hidden" value=""> | |
| <input name="location_lat" type="hidden"> | |
| <input name="location_lng" type="hidden"> | |
| </div> |