AllInWorld99 provides a reference manual covering many aspects of web programming, including technologies such as HTML, XHTML, CSS, XML, JavaScript, PHP, ASP, SQL,FLASH, jQuery, java, for loop, switch case, if, if else, for...of, for...in, for...each,while loop, blogger tips, blogger meta tag generator, blogger tricks, blogger pagination, client side script, html code editor, javascript editor with instant output, css editor, online html editor, materialize css tutorial, materialize css dropdown list,break, continue statement, label,array, json, get day and month dropdown list using c# code, CSS button,protect cd or pendrive from virus, cordova, android example, html and css to make android app, html code play,telerik show hide column, Transparent image convertor, copy to clipboard using javascript without using any swf file, simple animation using css, SQL etc. AllInWorld99 presents thousands of code examples (accompanied with source code) which can be copied/downloaded independantly. By using the online editor provided,readers can edit the examples and execute the code experimentally.


Create html file in php:-
    In php program we can easy to create more html files in a single click, and generate different code in every auto created html files.  We can create a file using "fopen"  and write content after creating the file using "fwrite".


Syntax for create a file:-


$myFile="filepath".extension";
$fh = fopen($myFile, 'a+') or exit("Error creation");
        ------
        ------
        $StringData="file Content";
        fwrite($fh, $stringData);


Example:-


<?php
for($i=1;$i<30;$i++)
{
$myFile="3dpage/3dpg".$i.".html";
$fh = fopen($myFile, 'a+') or exit("<font color='red'>Please Create a directory name:3dpage");
$stringData = "
<html>
<head>
<title>Very hot and Nice Wallpapers</title>
</head>
<body>
<div style='position:absolute;left: 20;top: 120px;width:201px;height:20px;'>
<img src='http://file1.hpage.com/011089/04/bilder/dbig_".$i.".jpg' width=750 height=700>
</div>
</body>
</html>";
fwrite($fh, $stringData);
}
echo "<font color='green'><b>29 Files were created successfully";
?>





Output:-

php generate html files

php file created
Advertisement


0 comments:

Post a Comment

Total Pageviews