php Flushing output

  Flushing output void flush ( void ) There is a special function in PHP called flush(), which is not really related to output buffering because it works with standard output, however it is so very similar to what we’ve just been looking at that it makes sense to cover it here. Flush() sends all output out immediately, without …

How to enable or use .htaccess on Apache Web Servers in Windows:

Using a text editor, open the httpd.conf file. In XAMPP, this file is found in the \apache\conf directory Locate the following line of code: #LoadModule rewrite_module modules/mod_rewrite.so Remove the # from the line as seen below to enable the module: LoadModule rewrite_module modules/mod_rewrite.so Save the httpd.conf file and Restart your server Restart your Apache Server If all goes well, you should …