$result = mysqli_query($con,$addtothedb);
$cur = "USERS/";
echo $des = $cur.$email.'/';

if($result){
  if ( mkdir($des,0777) ) {
  //http://pastebin.com/7J0BM5fD
  echo "<br/>";
  echo "<br/>";
  echo $file_name = $_FILES['file']['name']= 'mfix.png';
  echo "<br/>";
  echo "<br/>";
  echo $file_tmp =$_FILES['file']['tmp_name']= 'mfix.png';
  echo "<br/>";
  echo "<br/>";
  move_uploaded_file($file_tmp, $des.$mfix);
  echo "<img  src='<?php echo $mfix ;?>' alt='Image' style='width:100px;height:100px'>";
  /*echo "<img  src=' mfix.png' alt='Image' style='width:100px;height:100px'>";*/
  echo " <div id='success'> Account Successfully Created. <br> Now you can Login. </div>";                 
}

why it doesnt working?

Recommended Answers

All 2 Replies

first, please present your code in format that is easier to read. I edited your post because it was very difficult to even look at your code.

next, for the benefit of people trying to help you, provide some information and details, such as what error message do you see on the screen? What are you trying to do?

then, other members here can take a quick look and provide you with guidance.

This code is from my register form page.

problem
$mfix="mfix.png";
1.)move_uploaded_file($file_tmp, $des.$mfix); why this is not working ?
2.) i want that image (mfix.png) go to user folder when create his account

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.