over 10 years ago
This tutorial show's how we can create a simple Html file through PHP script.
if($filename == ''){ $filename = 'demo.html'; $writefile = ($filename , 'w'); $content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'; $content .= "\n"; $content .= '<html xmlns="http://www.w3.org/1999/xhtml">'; $content .= "\n"; $content .= '<head>'; $content .= "\n"; $content .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'; $content .= "\n"; $content .= '<meta name="keywords" content="" />'; $content .= "\n"; $content .= '<title>Title</title>'; $content .= "\n"; $content .= '</head>'; $content .= "\n"; $content .= '<body>'; $content .= "\n"; $content .= "<h1 style='visibility:hidden'>Heading</h1>"; $content .= "\n"; $content .= "</body>"; $content .="\n"; $content .= "</html>"; fwrite($filename, $content); fclose($filename); }else{ echo"FiIe Name All ready Exit"; }
Starting with Chrome version 45, NPAPI is no longer supported for Google Chrome. For more information, see Chrome and NPAPI (blog.chromium.org).
Firefox and Microsoft Internet Explorer are recommended browsers for websites using java applets.
Chrome Version Support
Are you sure, you want to delete this comment?
Sign up using
0 Comment(s)