Jump to content

nanny

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

nanny's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi I am allowing users who have registered to insert a Job Ad. One field in the insert record is am image file. I am new to php has I have done hundreds of pages html only and now realise I need to change. This is what I am up to I have been playing around and sometimes get a blank page when checking in the browser. <input type="file" name="picture" value="" size="40"> <?php //this is inserted after the picture file field $picture = "picture"; $file = "file"; if ($file[picture]) { $size = getImageSize($file['picture']); $width = $size[0]; $height = $size[1]; ?> <img src="<?php print $file['picture'];?>" width="<?php print $width;?>" height="<?php print $height;?>"> But this brings me a blank screen. Any suggestions on what I am doing wrong? Cheers
×
×
  • 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.