how to link between S3 and RDS

0

I created html(form.php) code and in that only name and email id. I want to create a database of whoever submits the form. while i have uploaded form.php in s3. so how to link to RDS?

已提问 1 年前286 查看次数
3 回答
1
已接受的回答

Hi,

You could create an API via API Gateway, which then stores the user information on RDS

profile picture
专家
已回答 1 年前
profile pictureAWS
专家
已审核 1 年前
1

S3 does not support server side scripting. It can only host static pages.

Php is dynamic content which requires server side scripting which will not work in S3 bucket.

What your trying to accomplish is not technically possible.

profile picture
专家
已回答 1 年前
1

Amazon S3 is a storage service, and it's typically not used to host server-side scripts such as PHP. PHP scripts require a server to process requests, and S3 is not designed to serve this purpose. Instead, S3 stores and retrieves static files like HTML, CSS, JavaScript, images, etc. So how do you do that on AWS? You can:

  1. Host your PHP form on an EC2 instance, not S3.
  2. Install a web server (like Apache) and PHP on your EC2.
  3. Ensure your RDS security group allows connections from your EC2.
  4. Use PHP's mysqli or PDO to connect to the RDS and store the form data.

I hope this helps

profile picture
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容