Get current Date in javascript
How to get current date in javascript? Date() is a feature of javascript. Check the full date feature here. Date objects are created with the new Date() constructor. By…
Create folder using php
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 CSV file with php
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…
Sending Emails using PHP
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…
Send mail in CodeIgniter
How to send mail in CodeIgniter using the normal mail() email library. We can send mail in codeigniter using the mail() and SMTP methods. To know how…
Sending SMTP mail in CodeIgniter
How to send SMTP mail in CodeIgniter ? We have normal mail() function in CodeIgniter but in some servers we may have to send emails using SMTP…
PHP form submit on same page
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…
Upload Base64 image PHP
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…
Remove html tags from string using php
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…
Generate QR code using codeigniter
How to generate QR code using codeigniter ? In this tutorial we’ll discuss about generate QR code using codeigniter. QR code is an another form of barcode…