Zdar borci
Potreboval by som poradiť s PHP. Mám napísanú aplikáciu pre OS Symbian v pythone a je tam upload obrázkov. Pri vytvorení screenshotu má screen určitý názov a ja potrebujem aby po uploadnutí na serve ten názov ostal rovnaký.
Tu je PHP kód, čo tam mám zmeniť aby nemenil názov uploadovaného súboru:
<?php
// read the incoming image data handed over from Python S60 phone
$data = file_get_contents('php://input');
// create a filename based om time and a random number
$timestamp = time();
$random_id = rand(0, 10);
$filename = 'screen_'.$timestamp .'.jpg';
// write the file to the server into the directory named beijing
$filepathname = "image/$filename";
$handle = fopen($filepathname, 'wb');
fputs($handle, $data, strlen($data));
fclose($handle);
// return the filename
echo " ".$filename;
?>
´Dakujem za pomoc