Topic: Passing custom parameter to uploads.php
Hello,
How do I pass custom parameter to the uploads.php ?
I have tried the following:
<script type="text/javascript">
$(document).ready(function () {
$(function () {
$("#uploader").pluploadQueue({
runtimes: 'html5',
my_custom_parameter: 'Value goes here',
and in the uploads.php:
$var = isset($_REQUEST["my_custom_parameter"]) ? $_REQUEST["my_custom_parameter"] : 'Value is empty';
But it is not working, any ideas? thank you