Posted on: 06/18/03 01:23pm
By: maigoofy
Hope this is the right place to bring this up. While searching for a good survey package, I found phpESP, an excellent open source tool for deploying a feedback. I also found that PostNuke has a module for it. It would be great if someone give a thought to it. I know it is easy to say. Just a thought.
http://phpesp.sourceforge.net/
phpESP for Geeklog?
Posted on: 06/18/03 04:41pm
By: Creator
GPlugs[*1] would probably be
a better place to post this feature request.
---
L. Whitworth
www.finiserv.com
phpESP for Geeklog?
Posted on: 06/18/03 06:57pm
By: maigoofy
OK. I will do that.
phpESP for Geeklog?
Posted on: 06/18/03 10:38pm
By: Ruatha
I'd really like to see this as well, but I'm kind of waiting to see how the GL Plug-in API changes with the pending 1.8 release. Until someone makes a plug-in for phpESP, you can wrap phpESP surveys and result fairly easily in to a GL site. Just install phpESP as a standalone application on your site and build your survey.
For each survey, create a php file with the following;
/* phpESP survey page */
require_once('/path/to/lib-common/lib-common.php');
$sid=2; // id number of phpESP survey
// $results=1; // uncomment this line to display the results instead of the questions.
$display = COM_siteHeader('menu');
include("/path/to/phpESP/public/handler.php");
$display .= COM_siteFooter(true);
echo $display