I am new to Modx and I want to write a custom but of code in a snippet that handles incoming post data. Unfortunately I can't seem to be able to collect the post data using $_POST. Can anyone point me in the right direction please? Cheers John

link|improve this question

51% accept rate
can you show what you've tried? I recall vardumping the post working for me in a snippet. – Daniel Jan 26 '11 at 6:05
Hi Daniel - sorry for delay my computer was boken. I simply tried as you say var_dumping the post array but it just showed it as empty. I am using revoultion if this makes a difference – user505988 Jan 30 '11 at 13:23
feedback

3 Answers

up vote 0 down vote accepted

Also, if you do not wish to cache the results of the snippet call use [[!getPost]] rather than [[getPost]].

link|improve this answer
feedback

I've used

<?php
var_dump($_POST);

and [[getPost]]

and it worked (I got an array of 0, but I didn't send anything in post)

link|improve this answer
feedback

Vardump is a VERY bad idea.

The MODx Revolution Object is huge...

Please try:

<?php
print_r($_REQUEST);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.