Jump to content

create dir then writing txt file


ball420

Recommended Posts

i got it  to create and write a txt file but now i'm trying to get it to create a  new directory then write the file. thanks for all the help

 

<?php
  
$newDirName = ["clientsName"]

$_POST["repsName"] . $_POST["clientsName"]. $_POST["clientsPhone"].
$_POST["clientsUrl"]. $_POST["shortDescroption"]. $_POST["longDescription"];

if(is_dir("./files")) mkdir("./files/"$newDirName, 0755);

$mode = file_exists('user_input.txt')?'a':'w'; // append if file exists otherwise create it $fp = fopen('user_input.txt',$mode);  // open file fwrite($fp,print_r($_POST,true)."\r\n");  // dump the contents of the $_POST array to the file fclose($fp); ?>

Link to comment
https://forums.phpfreaks.com/topic/72346-create-dir-then-writing-txt-file/
Share on other sites

updated code

<?php
  
$newDirName = $_GET["clientsName"]

$_POST["repsName"] . $_POST["clientsName"]. $_POST["clientsPhone"].
$_POST["clientsUrl"]. $_POST["shortDescroption"]. $_POST["longDescription"];

if(is_dir("./files")) mkdir("./files/"$newDirName, 0755);

$mode = file_exists('user_input.txt')?'a':'w'; // append if file exists otherwise create it $fp = fopen('user_input.txt',$mode);  // open file fwrite($fp,print_r($_POST,true)."\r\n");  // dump the contents of the $_POST array to the file fclose($fp); ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.