How i can store images into amazonaws server instead of storing on my hosting!
i have a PHP code that store images in my hosting/web dir. but i want to store them on amazon server!
PHP:
$targetfolder = "testfolder/";
i want to make target folder in amazon!
There are tons of tutorials on this, but here is the general process
Methods to interact with your bucket include:
aws s3
cli application http://docs.aws.amazon.com/cli/latest/reference/s3/index.htmlI suggest from the OP your best bet would be to use the PHP SDK.