Jump to content

KaiKiller

New Members
  • Posts

    2
  • Joined

  • Last visited

KaiKiller's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The title. the function move_uploaded_file() is unable to move file from the tmp folder in my wamp server to the temp folder i have in the web i'm doing in my local host.
  2. <html> <head> <link rel="stylesheet" href="_admin-style.css" /> </head> <body> <?php include 'host_connect.php'; $server = 'temp'; $temporal = $_FILES['imagen']['tmp_name']; $image_name = $_FILES['imagen']['name']; $folder = $server.'/'.$image_name; move_uploaded_file($temporal,$folder); $desc = $_POST['descripcion']; $link = $_POST['link']; $sql = "INSERT INTO datos (ruta,descripcion,link) values('".folder."','".$desc."','".$link."')"; $res = mysql_query($sql); if ($res) { ?> <div class="user"> <input type='button' value='Volver al panel' onclick='window.location="user_panel.php"' style="margin-left:400px;" /> <p style="margin-left:400px;">Imagen guardada y recibida correctamente.</p> </div> <?php } else { ?> <div class="user"> <input type='button' value='Volver al panel' onclick='window.location="user_panel.php"' style="margin-left:400px;" /> <p style="margin-left:400px;">No se puede guardar la imagen.</p> </div> <?php } ?> </body> </html>
×
×
  • 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.