I want to know, how can i implement download wallpaper [.jpg image] functionality in my application
on button click or is there any other way to download image please reply.
I want to know, how can i implement download wallpaper [.jpg image] functionality in my application
on button click or is there any other way to download image please reply.
please reply ....
I want to know, how can i implement download wallpaper [.jpg image] functionality in my application
on button click or is there any other way to download image please reply.
Hi,
Is your app a WRT widget or Series 40 web App?
-Ilkka
its a WRT application (.wgz installation file) developing for symbian 3 devices.
Something like this may work.
getimage.phpHTML Code:<button onclick="widget.openURL('http://yourdomain.com/getimage.php');">Download photo</button>
-IlkkaPHP Code:
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header('Content-type: "image/jpeg"');
header('Content-Disposition: attachment; filename="wallpaper.jpg"');
readfile('wallpaper.jpg');
?>
Thanks alot isalento
its working ........................![]()