Jump to content

MediaGord

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

MediaGord's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi I'm new to this whole thing of uploading and having some issues. I keep getting weird characters: ��y����c㈔^����G#�� �4��j�j�\()T� like that, and the image is uploading but it's not renaming the file to the directory I want it in: listing1/01.jpg. Any help would me much appreciated, here is the code: <?php if ((($_FILES["file"]["type"] == "image/jpeg") ) && ($_FILES["file"]["size"] < 20000000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; rename("/upload/" . $_FILES["file"]["name"],"/listing1/01.jpg"); $sourceImageFilePath="listing1/01.jpg"; $maxResizeWidth="256"; $maxResizeHeight="192"; //-----------------------------------------------------------------Get image sizes function get_image_sizes($sourceImageFilePath, $maxResizeWidth, $maxResizeHeight) { // Get the width and height of the original image $size = getimagesize($sourceImageFilePath); if($size === FALSE) return FALSE; // Error condition $origWidth = $size[0]; $origHeight = $size[1]; // Change dimensions to fit maximum width and height $resizedWidth = $origWidth; $resizedHeight = $origHeight; if($resizedWidth > $maxResizeWidth) { $aspectRatio = $maxResizeWidth / $resizedWidth; $resizedWidth = round($aspectRatio * $resizedWidth); $resizedHeight = round($aspectRatio * $resizedHeight); } if($resizedHeight > $maxResizeHeight) { $aspectRatio = $maxResizeHeight / $resizedHeight; $resizedWidth = round($aspectRatio * $resizedWidth); $resizedHeight = round($aspectRatio * $resizedHeight); } // Return an array with the original and resized dimensions return array($origWidth, $origHeight, $resizedWidth, $resizedHeight); } // Get dimensions $sizes = get_image_sizes($sourceImageFilePath, $maxResizeWidth, $maxResizeHeight); $origWidth = $sizes[0]; $origHeight = $sizes[1]; $resizedWidth = $sizes[2]; $resizedHeight = $sizes[3]; // Create the resized image $imageOutput = imagecreatetruecolor($resizedWidth, $resizedHeight); if($imageOutput === FALSE) return FALSE; // Error condition // Load the source image $imageSource = imagecreatefromjpeg($sourceImageFilePath); if($imageSource === FALSE) return FALSE; // Error condition $result = imagecopyresampled($imageOutput, $imageSource, 0, 0, 0, 0, $resizedWidth, $resizedHeight, $origWidth, $origHeight); if($result === FALSE) return false; // Error condition // Write out the JPEG file with the highest quality value $result = imagejpeg($imageOutput, $outputPath, 100); if($result === FALSE) return false; // Error condition if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file"; } ?> Any ideas why it would be doing this? Thanks, Gord.
  2. Great! that's exactly what I was missing. Thanks very much :-)
  3. I see what you mean. Sort of new to this. I'll tinker around and let you know what I come up with, thanks for the advice :-)
  4. I'm sending the variables from Flash though and the php link is correct, here's the flash code so far: //Send and Load variables var form_process:LoadVars = new LoadVars(); send_btn.onRelease = function() { var post_variable:LoadVars = new LoadVars(); post_variable.fname = fname_txt.text; post_variable.lname = lname_txt.text; post_variable.cname = cname_txt.text; post_variable.address = address_txt.text; post_variable.phone = phone_txt.text; post_variable.email = email_txt.text; post_variable.logo_yes_no = logo_yes_no; post_variable.font_yes_no = font_yes_no; post_variable.fontchoice = fontchoice; post_variable.bannerchoice = bannerchoice; post_variable.navchoice = navchoice; post_variable.colorchoice = colorchoice; post_variable.templatechoice = templatechoice; post_variable.gallerychoice = gallerychoice; post_variable.homewrite = homewrite_txt.text; post_variable.aboutwrite = aboutwrite_txt.text; post_variable.sendAndLoad("http://www.mediagord.com/yellowday/form/form.php",form_process,"POST"); }; form_process.onLoad = function(success:Boolean) { if (success) { trace("Neeeee Haaaaawwwwwwwww!!!!!!!"); } else { results_txt.text = "Error connecting to server."; } };
  5. Hi, does anyone see anything wrong with this code off hand? I've tried many different ways and it still doesn't want to go into my database. I quadruple checked the database name and info. My best guess is that it's the variables. Possibly the variables I am getting from Flash aren't posting correctly? When I do a trace in Flash it says that the sendAndLoad is working. Anyways let me get your thoughts if your interested. Thanks. <?php $fname = $_POST['fname']; $lname = $_POST['lname']; $cname = $_POST['cname']; $address = $_POST['address']; $phone = $_POST['phone']; $email = $_POST['email']; $logo_yes_no = $_POST['logo_yes_no']; $font_yes_no = $_POST['font_yes_no']; $fontchoice = $_POST['fontchoice']; $bannerchoice = $_POST['bannerchoice']; $navchoice = $_POST['navchoice']; $colorchoice = $_POST['colorchoice']; $templatechoice = $_POST['templatechoice']; $gallerychoice = $_POST['gallerychoice']; $homewrite = $_POST['homewrite']; $aboutwrite = $_POST['aboutwrite']; DEFINE ('DB_USER', 'dbusername'); // Insert your database username into the quotes. DEFINE ('DB_PASSWORD', 'dbpassword'); // Insert your database password into the quotes. DEFINE ('DB_HOST', 'dbhost'); // This will most likely stay the same. DEFINE ('DB_NAME', 'dbname'); //Insert your actual database name in the quotes. $dbc = @mysql_connect (DB_HOST, DB_USER, DB_PASSWORD) OR die ('Could not connect to MySQL: ' . mysql_error()); //@ is to o not show errors on the page @mysql_select_db (DB_NAME) OR die('Could not select the database: ' . mysql_error() ); $query="INSERT INTO form_data (fname, lname, cname, address, phone, email, logo_yes_no, font_yes_no, fontchoice, bannerchoice, navchoice, colorchoice, templatechoice, gallerychoice, homewrite, aboutwrite) VALUES ('$fname', '$lname', '$cname', '$address', '$phone', '$email', '$logo_yes_no', '$font_yes_no', '$fontchoice', '$bannerchoice', '$navchoice', '$colorchoice', '$templatechoice', '$gallerychoice', '$homewrite', '$aboutwrite')"; //form_data is the name of the MySQL table where the form data will be saved. $numR = mysql_num_rows($sql); echo "Database updated with: $fname "; ?>
×
×
  • 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.