<?php
	include("netfunctions.php");
	$content_type = $_POST["content_type"];
	$content = $_POST["content"];
	if($content_type != "text")
	   $content = $_FILES['content']["tmp_name"];

	cacheFromClient($content, $content_type);
?>