in reply to Re: dereference array
in thread dereference array
The original problem was getting the recent changes from a mediawiki site. I use the excellent mod:MediaWiki::Bot module to retrieve the info using the Mediawiki API.
What you get is then an array of hashes with this structure:
But I then need to put it all together per user: pages edited, number of edits, etc. It would be much easier if I had database access but that is a no-no Thanks for taking the time to look into this.$VAR50 = { 'revid' => 174, 'ns' => 0, 'comment' => '', 'timestamp' => '2013-04-01T12:30:28Z', 'user' => 'user', 'title' => 'page title', 'type' => 'edit', 'pageid' => 50, 'old_revid' => 173, 'rcid' => 180 };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: dereference array
by GrandFather (Saint) on Dec 03, 2013 at 13:55 UTC | |
by natxo (Scribe) on Dec 03, 2013 at 14:50 UTC |