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
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); ?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.