Showing posts with label Tips & Tricks. Show all posts
Showing posts with label Tips & Tricks. Show all posts
How to read the .docx files in PHP

How to read the .docx files in PHP

Hi, In This tutorial you will learn about "How to read the .docx files in PHP". Generally .docx files will be opened in the MS-OFFICE, But we are able to open the .docx file in PHP we have to convert the .docx file into text then we can easily display the content in the web browser. <?php function read_file_docx($filename){ $striped_content...
How to Refresh a page after specific time automatically in PHP

How to Refresh a page after specific time automatically in PHP

Hi, In This tutorial you will know about How to Refresh a page after specific time automatically in PHP. Generally, we did this type of implementation in the javascript or jquery but sometimes javascript is disabled in the user's side (i.e users disabled the javascript in their browsers). At this situation, we need to implement that code in PHP it...
How to Export and Download the Mysql Table data to CSV File in PHP

How to Export and Download the Mysql Table data to CSV File in PHP

Hi, You will learn in this tutorial How to Export and Download the Mysql Table data to CSV File in PHP. Sometimes you need to Export the user's data to CSV file because if a client wants to send the emails from the Autoresponders like Aweber, GetResponse, Mailchimp, etc.. In this case, you need to provide the user's contact information in the form...
How to send the bold, italic text in skype chat

How to send the bold, italic text in skype chat

Hi, In this tutorial, I am going to explain How to send the bold,italic text in Skype chat. Generally, in skype chat we send the normal text if you want to send the bold, italic, cross-out text and the combination of the bold and italic text. Just use some symbols before and after the text. * for bold text, _ for italic text, ~ for cross-out text. Usage Bold...
How to import the Excel sheet data into MySql database

How to import the Excel sheet data into MySql database

Hi, In this tutorial, I am going to explain  How to import the Excel sheet data into MySql database. Some of the organizations are uses the Excel sheets to save their data. When they want to upgrade their system with new technologies. Then we need to convert the entire Excel sheets data into SQL format. For example, consider the one of the...
How to enable php intl extension in XAMPP / WAMP

How to enable php intl extension in XAMPP / WAMP

What is the php intl extension. It is a Internationalization extension. It is useful for formatting currency, number and date or time as well as UCA-conformant collations, for message formatting and normalizing text..etc If you want to enable the php intl extension .Follow these steps. Step #1: Open the [xampp / Wamp path]/php/php.ini file Now search...
How to delete the entire directory with in its files in php

How to delete the entire directory with in its files in php

Generally we use the remove directory rmdir() method. In this case the directory will be removed when it has no files on it. another way is unlink() method. This method can be used for removing the single file from the directory location. How to download the multiple directories as a zip file in PHP If you want to remove the directory and its all...
How to include CSS and JS files via HTTPS

How to include CSS and JS files via HTTPS

Generally we include the CSS and JS files are in the below format. <link rel="stylesheet" href="http://example.com/style.css"> <script src="http://example.com/script.js"> The links are works perfect in the normal protocal like http://example.com .when we move to the SSL enabled site i.e https://example.com. In this case above inlcuded...
How to increase the php file upload limits

How to increase the php file upload limits

PHP has several configuration options to limit resources consumed by scripts. By default, PHP is set to allow uploads of files with a size of 2MB or less. Now you can change these configuaration. Follow these steps Step 1: open your server root directory Step 2: open the php directory Step 3: open the php.ini file Try increasing the following values...
How to increase the import file size in phpmyadmin

How to increase the import file size in phpmyadmin

In general phpmyadmin allows to import file size Max: 2,048KiB By default you get a 2mb limit of import size in phpmyadmin.It is impossible to import larger files. You can increase the allowed import size of phpmyadmin by editing your server's php.ini configuration file. Usually it is located at {Server}/Php/php.ini. Here Server is WAMP, XAMPP, VERTRIGO. Step...
How to register the facebook account with out your original information

How to register the facebook account with out your original information

Today I will explain how to register a Facebook account with out your original email address and mobile number. This tutorial is only for educational purpose. Don't misuse this technique. Do you know about any disposable email systems? . What do you mean by the disposable email? It is temporary email address you can get very easily and when you create...