Factorial in PHP Simple Program1
Write a program to find the factorial in php of a number. Factorial of a number is the product of numbers from 1 to ‘n’. Eg:- 5!…
Factorial in PHP Simple Program1 Read More »
Write a program to find the factorial in php of a number. Factorial of a number is the product of numbers from 1 to ‘n’. Eg:- 5!…
Factorial in PHP Simple Program1 Read More »
How to create folder using php. Use mkdir() function to create new folder using php. We can also specify the full path to create folder as follows,…
Create folder using php Read More »
How to create csv file with php? Generating csv file with php and download it. In this article we will discuss about how to create CSV file…
Create CSV file with php Read More »
Sending emails using php can be done by the mail() function. If you are looking for codeigniter mail function please click here. In this article we will…
Sending Emails using PHP Read More »
How to do PHP form submit on same page. On submitting the form stay on same page. In this article we’ll discuss php form submit on same…
PHP form submit on same page Read More »
How to upload base64 image php? Uploading base64 encoded image in php. In this article we will discuss about how to upload a base64 encoded image in…
Upload Base64 image PHP Read More »
How to remove html tags from string using php? We can remove html tags from string by using strip_tags() in php. The strip_tags() function strips a string…
Remove html tags from string using php Read More »
How to compare strings with differences and similarties in php ? In this article we’ll discusshow to compare strings with differences and similarities in php. Usually we…
Highlight and Compare strings with differences and similarities in php Read More »
How to compress and upload image using Php? Uploading large sized files will always take more time and also it will occupy more disk space. To solve…
Compress and upload Image using PHP Read More »
How to check a given date is today, yesterday or tomorrow, or how many days far,etc using php ? Sometime we may have to find a given…
Check if a date is today, yesterday or tomorrow Read More »
How to upload multiple files using PHP, jquery and ajax? The most common method to upload multiple files was using FORM/POST and it is done by Php….
Upload multiple files using PHP, jQuery and AJAX Read More »
How to display numbers with Ordinal suffix like 1st, 2nd,3rd,etc ? Ordinal numbers shows the order of elements in a set. In other words they show rank…
Display numbers with ordinal suffix in PHP Read More »