Is there a PHP method to upload a jpg file to a website?
I am already using this to populate the database.
echo "<input type=file name=file>\n";
echo "<input type=submit>\n";
echo "</form>\n";
if (isset($file) AND $file != "none"){
$file_data = fread( fopen($file, 'r'),
filesize($file) );
Any good idea on how to run a thumbnail generation at that time too?
TIA
__Stephen