[SOLVED] Problem with Upload Form
Posted: Sat Aug 02, 2014 9:25 am
Hi,
http://wiki.nubuilder.net/index.php/Mis ... pload_Form
But this code works :
Thanks
http://wiki.nubuilder.net/index.php/Mis ... pload_Form
The code does in the After Save tab not work for me :On a successful upload to the server a JSON string is saved into a Hash Variable #FILES# so we can fetch the file information from this using the json_decode function from PHP.
Code: Select all
//fetch the uploaded file information
$J = json_decode('#FILES#');
But this code works :
Code: Select all
//fetch the uploaded file information
$J = json_decode(nuGetHash('#FILES#'));
Thanks