FTP Error in WordPress July 14, 2021 The error usually occurs when the following code is missing from wp-config.php file; define('FS_METHOD','direct'); Read more
Export to Excel using header disposition July 02, 2021 $output.="YOUR HTML TABLE HERE"; header("Content-Type: application/vnd.ms-excel"); header("Content-Disposition: attachment; filename=excel.xls"); echo $output; Read more