Hi!
Unfortunately, that tutorial is for Form Tools 1 - it won't be up to date for version 2 yet. The majority of the code will be the same, but not identical.
Sorry about that! I'm just working on another tutorial today, but I can try and get that written next if you need it. When's your project due?
btw, the reason that function isn't found is that you need to update the line that includes the api.php file from this:
Unfortunately, that tutorial is for Form Tools 1 - it won't be up to date for version 2 yet. The majority of the code will be the same, but not identical.
Sorry about that! I'm just working on another tutorial today, but I can try and get that written next if you need it. When's your project due?
btw, the reason that function isn't found is that you need to update the line that includes the api.php file from this:
PHP Code:
<?php
require_once("http://www.researchride.com/register/global/api/api.php");
to use a path (not URL!), e.g.
PHP Code:
<?php
require_once("/path/to/register/global/api/api.php");
