One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <!-- | |
| The examples below illustrate different ways to make a reactive and nonreactive join between two collections. | |
| We will retrieve in all of them a list of the 10 most popular posts along with their author profile. | |
| More informations are available on: http://journal.gentlenode.com/ | |
| Summary: | |
| 1. Nonreactive Join #1: Denormalization. | |
| 2. Reactive Join #1: Joining on the client. (by calling a publication) | |
| 3. Reactive Join #2: Overpublishing. (and joining with data context) |
| # | |
| # Verify captcha | |
| $post_data = http_build_query( | |
| array( | |
| 'secret' => CAPTCHA_SECRET, | |
| 'response' => $_POST['g-recaptcha-response'], | |
| 'remoteip' => $_SERVER['REMOTE_ADDR'] | |
| ) | |
| ); | |
| $opts = array('http' => |