Author: mrabd423
It will be very easy for you if you have some concepts about Php scripting language. Because it is connected with webhook in many cases and it will be more …
Let’s start to write some code that uploads your files on the server. Step 1: Make a simple form in the views. <form action="index.php/welcome/do_upload" method="post" enctype="multipart/form-data"> <input type="file" name="userFile"/> <input …
To make a simple Palindrom we just have to write some little code that will work exactly according to our needs. We will get some input from the user and …
Once again we are going to write the code to get our job done without using any single function. We will have an input from the user and then we …
The way to customize the values of an array with the way which you wan’t it to be customized. Just suppose we have an array like this <?php $abc = …
You can have a product of all numerical values in an array. Just you have to use the array_product() function to get this job done. Code Example: <?php $array = …
We can search a value into an array to know weither a value exist in an array or not and if it exist then what its key. This is quite …
Some people have made mvc very complicated to understand. By writing or defining it in a very hard sense and many people still have confusions about the MVC. Let me …
As you already knew that how factorial works in mathamatics if not then follow this link Click Here. We are going to write the code that will take a number …
What we will do if we have to count the vowels in a string. Don’t worry i’m going to write the code of it that counts the vowels. Code Example: …