Pesquisar na Comunidade
Mostrando resultados para as tags ''move_uploaded_file''.
Encontrado 1 registro
-
<?php $cnx=pg_connect("host=localhost dbname=pride user=postgres password=postgres"); if ($_POST['postok']){ if ($_POST['nom']==''){ $msg = 'Preencha o Campo Nome...'; }else{ if ($_POST['men']==''){ $msg = 'Preencha o Campo Mensagem...'; }else{ $res=pg_query($cnx,"insert into menprime (nom_men,mens_men) VALUES ('$_POST[nom]','$_POST[men]')"); $codcompact=pg_query($cnx,"SELECT LAST_VALUE FROM menprime_cod_men_seq");//aki seleciona ultimo cod seq do banco de dados da tabela usuario $codigo=pg_fetch_result($codcompact,0,0); move_uploaded_file($_FILES[figurausuario][tmp_name],"C:/xampp/htdocs/pridemensagem/ImagensUsuario/img_$codigo");//salvando a imagem na pasta imagensusuario } } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Pride Music Bar</title> <style> #E2{ margin-top:20px; } #E3{ margin-top:-20px; height:15px; margin-left:450px; } </style> </head> <body> <form id="frmmensagem" method="post" action="index.php"> <table border="0" align="center" cellpadding="0" cellspacing="0" id="E2" width="927"> <tr> <td align="left" width="140"><b>Nome:</b></td> <td><input name="nom" type="text" size="30"/> </td> </tr> <tr> <td align="left" width="140"><b>Mensagem:</b></td> <td><input name="men" type="text" size="120" /> </td> </tr> <tr> <td align="left" width="140"><b>Imagem:</b></td> <td><input type="file" name="figurausuario"> </td> </tr> <tr> <td> </td> <td> <input name="Submit" type="submit" class="botao" value=" Incluir " /> <input name="postok" type="hidden" id="postok" value="1" /> <input type="reset" name="Limpar" value="Limpar" class="Botao" size="20"> </td> </tr> </table> <div id="E3"> <span class="retornoForm"><? echo $msg; ?></span> <? if(isset($_GET['msg'])){ ?> <span class="retornoForm"> <? echo $_GET['msg'];} ?> </span> </div> </body> Preciso de ajuda na move_uploaded_file não sei por que motivo não funciona, queria que ele grava-se as imagens neste caminho C:/xampp/htdocs/pridemensagem/ImagensUsuario. caso alguém possa me ajudar agradeço desde já.. Att..