Php photo gallery TWG | JFUploader | TWG Flash upload | WFU | Forum
https://www.tinywebgallery.com/forum/

PHP Image Gallery Upload Problem
https://www.tinywebgallery.com/forum/viewtopic.php?f=4&t=2876
Page 1 of 1

Author:  simy202 [ 19. Jan 2011, 05:08 ]
Post subject:  PHP Image Gallery Upload Problem

Hi,

This is probably a simple question, however I am finding it difficult to accomplish.

<?php
$upload = new upload();
$upload->upload_file();
?>

so in a test page it would be like so:

<?php
$upload = new upload();
$upload->upload_file();
?>


<form action="" method="post" enctype="multipart/form-data">
<input type="file" id="real_upload" class="hide" name="file" />
<input type="submit" id="real_submit" class="hide" value="Upload" />
</form>

The problem is I'm using this upload system for parts of the website, what I want is to have this class upload the file once it has gone through the "gallery upload" segment:

<?php

$mysql_link = mysql_connect("localhost", "", "");
mysql_select_db("") or die("Could not select database");

while($counter <= count($photos_uploaded)) {
if($photos_uploaded['size'][$counter] > 0) {
if(!array_key_exists($photos_uploaded['type'][$counter], $known_photo_types)) {
$result_final .= "File ".($counter+1)." is not a photo<br />";
}
else {
mysql_query( "INSERT INTO gallery_photos(`photo_filename`, `photo_caption`, `photo_category`) VALUES('0', '".addslashes($photo_caption[$counter])."', '".addslashes($_POST['category'])."')" );
$new_id = mysql_insert_id();
$filetype = $photos_uploaded['type'][$counter];
$extention = $known_photo_types[$filetype];
$filename = $new_id.".".$extention;

mysql_query( "UPDATE gallery_photos SET photo_filename='".addslashes($filename)."' WHERE photo_id='".addslashes($new_id)."'" );
}

?>
How would I approach this PHP Image Gallery (Upload Problem)?

Thanks

Author:  TinyWebGallery [ 19. Jan 2011, 08:57 ]
Post subject:  Re: PHP Image Gallery Upload Problem

How is this related to TWG?

- Michael

Author:  chiryphp [ 25. Jan 2011, 03:13 ]
Post subject:  Re: PHP Image Gallery Upload Problem

I cannot understand your question. After I search and find some scripts about php image gallery listed on the page!
Hopefully can help you!

Author:  TinyWebGallery [ 25. Jan 2011, 10:46 ]
Post subject:  Re: PHP Image Gallery Upload Problem

Please only post questions about TinyWebGallery and don't post urls to unrelated content. I will delete this.

- Michael

Page 1 of 1 All times are UTC + 1 hour [ DST ]
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/