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?

asked a year ago274 views
3 Answers
1
Accepted Answer

Hi,

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

profile picture
EXPERT
answered a year ago
profile pictureAWS
EXPERT
reviewed a year ago
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
EXPERT
answered a year ago
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
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions