nanny Posted February 2, 2006 Share Posted February 2, 2006 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 Link to comment https://forums.phpfreaks.com/topic/3304-insert-record-having-an-image-upload/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.