1. Read
  2. Vote
  3. Old
  4. New
  5. Hot
  6. Reply

SIDU feature request and bug



This topic is a place to collect feedback for SIDU bugs and feature requests.
Cat: SIDU | Read: 17710 | Msg: 5 | 2018-10-28  2
Tag: SIDU, Bug, Feature

Finding the Nth Fibonacci number via PHP

Here is an example of Fibonacci numbers:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...

Write a function f(x) so that return the following eg:

f(2) = 1 f(4) = 2 f(6) = 5 f(8) = 13 etc

And here is the code: function f($x = 0) { if ($x < 2) { return $x; } else { return f($x - 2) + f($x - 1); } }
Cat: General | Read: 57999 | Msg: 1 | 2018-11-01  1
Tag: Test

Benson Bank Feature Request and Bug Report



This is a place to collect feature request and bug report for BensonBank CMS
Cat: BensonBank | Read: 246560 | Msg: 1 | 2018-10-29  1
Tag: Bank, Bug, Feature

Wiki: Topnew Form Helper

Wiki: CMS Form Helper v 2018.09.09

Topnew Form helper generates html form, with data validation. It also generates SQL based on input values. Let's start with an example:


Let's start with a quick Example:

/* Define all for
Cat: CMS | Read: 65819 | Msg: 1 | 2018-11-08  5
Tag: CMS, Wiki

Category