3
Hello. That's definitely the kind of thing you can do in Formulize. It will be a whole lot easier in the next release, but for now with 2.2 you can get a lot done with Formulize+Pageworks.
From your basic description, you want to...
1. Create a form in Formulize
2. Create a page in Pageworks to display entries in the Formulize form. There are several functions available to help you do that, there is reading material about this on our dev.xoops.org area, accessible through
http://www.freeformsolutions.ca/formulize3. Create another page in Pageworks to act as your custom block with random info on it. Then make a PHP block in XOOPS and make the contents of that PHP block:
// assume your pageworks page is number 12
// but of course you would use whatever the
// actual number is when you make it
$page = 12;
include XOOPS_ROOT_PATH . "/modules/pageworks/index.php";
With that, your Pageworks page 12 will appear in a block that you can then place wherever you want on your XOOPS site.
If you dig into this with Formulize, please post followups in the Formulize area on dev.xoops.org where we try to centralize application development discussions.
Good luck,
--Julian