Created
November 7, 2010 18:21
-
-
Save andrerocker/666297 to your computer and use it in GitHub Desktop.
post blog fragmento processa logo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function processaLogo() | |
{ | |
$logo = processaUploadLogo($_FILES["logo"]); | |
if(!$logo) | |
{ | |
header("location: index.php?retorno=upload-invalido"); | |
return; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment