Quote:
Yesterday at 07:32 PM robbyt said this in Post #64
Logician...I concur with the others, this is very cool. The only thing not working on my board is outside variables. I define them to the page (without $ and with spaces), access the template via an HTTP Post operation and cannot display the $variable. Everything else works as it should. What am I not understanding here?
Example: variable name defined to template: cnumber
Use: You've entered your $cnumber ...
What I get: You've entered your ...
???
|
You are right. There is a small bug in the code and here is the fix:
Edit view.php, find:
PHP Code:
$n=substr($k,1);
Replace it as:
This should fix your problem.