Making a subdirectory php help

6 replies
I found a php code to make a folder on a website. This code words for that, but what I really want to make are subfolders of yourpages

yourpages/hometutor making the full path http://godsbusinessway.com/yourpages/.$var

Here's the code I found which will also write to the generated folder


<?php

// change the name below for the folder you want
$dir = "yourpages";

$file_to_write = 'test.txt';
$content_to_write = "The content";

if( is_dir($dir) === false )
{
mkdir($dir);
}

$file = fopen($dir . '/' . $file_to_write,"w");

// a different way to write content into
// fwrite($file,"Hello World.");

fwrite($file, $content_to_write);

// closes the file
fclose($file);

// this will show the created file from the created folder on screen
include $dir . '/' . $file_to_write;

?>

Thanks,

Rick
#making #php #subdirectory

Trending Topics