<?php if(!empty($_GET[‘upto’])){ $upto = $_GET[‘upto’]; }else{ $upto = “”; } function getfibo($upto=5){ $second =1; $first =0; $fibo_arr[] = $first; $fibo_arr[] = $second; for($i=1; $i<$upto; $i++){ …
Read MoreSpread Your Knowledge
<?php if(!empty($_GET[‘upto’])){ $upto = $_GET[‘upto’]; }else{ $upto = “”; } function getfibo($upto=5){ $second =1; $first =0; $fibo_arr[] = $first; $fibo_arr[] = $second; for($i=1; $i<$upto; $i++){ …
Read More