CTphpnwb's Contributions
Below are the tutorials, code snippets, and resources CTphpnwb has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Checkbox Tutorial in PHP Tutorials (Last Comment: CTphpnwb, Views: 21,268)
Dynamic Dropdown Menus in PHP Tutorials (Last Comment: CTphpnwb, Views: 5,116)
Code separation in PHP Tutorials (Last Comment: CTphpnwb, Views: 21,285)
Why use functions? in PHP Tutorials (Last Comment: CTphpnwb, Views: 15,686)
Limiting login attempts in PHP Tutorials (Last Comment: CTphpnwb, Views: 22,216)
Code Snippets
Submitted: July 4, 2011        Views: 1588
This snippet calculates the Fibonacci series up to a specified number of digits. It uses vectors to keep track of all of the digits in each number in the series and does the addition "manually" as you would with pencil and paper.
Submitted: July 16, 2011        Views: 812
This snippet calculates the Fibonacci series up to a specified number of digits. It uses arrays to keep track of all of the digits in each number in the series and does the addition "manually" as you would with pencil and paper. This is very similar to the C++ snippet here: http://www.dreamincode.net/code/snippet6206.htm There is a slight difference in where these two snippets stop calculating Fibonacci numbers. Neither currently calculates the last number of the given number of digits. I'll leave that for interested readers to adjust.