src/cm/media/js/lib/yui/yui3.0.0/tests/io/tests/put.php
author Yves-Marie Haussonne <ymh.work+github@gmail.com>
Fri, 09 May 2014 18:35:26 +0200
changeset 656 a84519031134
parent 0 40c8f766c9b8
permissions -rw-r--r--
add link to "privacy policy" in the header test

<?php

$count = count($_POST);

if ($count > 0) {
	$data = $_POST['hello'];
	$data .= "&" . $_POST['foo'];
	echo $data;
}
else {
	echo $count;
}
?>