Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8458637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:08:01+00:00 2026-06-10T13:08:01+00:00

I am a beginner in php my code to create a directory is given

  • 0

I am a beginner in php my code to create a directory is given below.

<?php


        if($_POST["create"])
        { 
            $name=$_POST["newDirCreated"];
            $uploaddir = $name;
            mkdir($uploaddir,0777);
            print "created";
        }


?>

But directory is not created using this. If i want create a directory in public_html how can i do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:08:02+00:00Added an answer on June 10, 2026 at 1:08 pm

    mkdir() doesn’t throw an exception when something goes wrong. You have to make your script a little bit more “talkative” to get more information about what’s going on

    <?php
    error_reporting(E_ALL);
    ini_set('display_errors', true);
    
    if( !isset($_POST["create"]) ) {
        echo 'post parameter create not present';
    }
    else {
        // you are absolutely sure about passing the POST parameter as-is to mkdir() ?
        // ok, it's up to you; just make sure it doesn't get abused....
        echo 'current working directory: ', htmlspecialchars(getcwd()), "<br />\n";
        echo 'newDirCreated: ', htmlspecialchars($_POST["newDirCreated"]), "<br />\n";
        $rc = mkdir($_POST["newDirCreated"], 0777);
        if ( $rc ) {
            echo 'created';
        }
        else {
            echo "an error occured<br />\n";
            if ( function_exists('error_get_last') ) {
                echo 'error_get_last: ', htmlspecialchars(print_r(error_get_last(), true));
            }
            else if ( isset($php_errormsg) ) {
                echo 'php_errormsg: ', htmlspecialchars($php_errormsg);
            }
            else {
                echo 'no additional error information available';
            }
        }
    }
    

    But remember to make it less talkative (yet handling error conditions) again after debugging. You shouldn’t expose all the inforamtion to arbitrary users…

    see also:

    • http://docs.php.net/reserved.variables.phperrormsg
    • http://docs.php.net/error_get_last
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a beginner in php, and I am trying to create a login and
I'm a beginner PHP coder, recently I've been told I indent my code not
I'm a beginner. I write simple json jquery php code to help understand the
I'm a beginner in PHP. 2 days ago I write few lines of code
I am just a beginner in php. I used the following code to display
I first want to say I'm a beginner with PHP and my code is
I am just a beginner in php. I have tried to write code for
Am a beginner in php. My problem is, i use the following code to
I am little more than beginner PHP programmer and just recently started to use
PHP beginner working from a tutorial. I'm trying to do a simple upload from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.