I copied the PHPForm generated code and added it to a web page of mine. Filled in the Form for a test and Submitted. I received these Warnings:
(Can anyone help me remedy these warnings? So that I can use the form on my web page? Thank you.)
Warning: main(global.inc.php) [function.main]: failed to open stream: No such file or directory in /home/public_html/site/process.php on line 156
Warning: main(global.inc.php) [function.main]: failed to open stream: No such file or directory in /home/public_html/site/process.php on line 156
Warning: main() [function.include]: Failed opening 'global.inc.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/public_html/site/process.php on line 156
Fatal error: Call to undefined function: pt_register() in /home/public_html/site/process.php on line 157
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I copied the PHPForm generated code and added it to a web page of mine. Filled in the Form for a test and Submitted. I received these Warnings:
(Can anyone help me remedy these warnings? So that I can use the form on my web page? Thank you.)
Warning: main(global.inc.php) [function.main]: failed to open stream: No such file or directory in /home/public_html/site/process.php on line 156
Warning: main(global.inc.php) [function.main]: failed to open stream: No such file or directory in /home/public_html/site/process.php on line 156
Warning: main() [function.include]: Failed opening 'global.inc.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/public_html/site/process.php on line 156
Fatal error: Call to undefined function: pt_register() in /home/public_html/site/process.php on line 157
global.inc.php
This file needs to be located in the same place as the process.php file unless you edit the path within the process.php file.
Everything else is related to the first failure.
Thnak you