-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(function): add mysql example in PHP #89
Draft
cyclimse
wants to merge
1
commit into
main
Choose a base branch
from
feat/php-mysql-example
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# MySQL RDB and PHP functions | ||
|
||
A small example of a PHP function that creates a table in a MySQL database and inserts a row into it. | ||
|
||
## Deploying | ||
|
||
1. Create a MySQL database from the Scaleway console. | ||
1. Make sure to create a user as well. | ||
2. Create a new function namespace and a PHP function running using PHP 8.2 | ||
3. Copy the contents of `handler.php` into the function code editor. | ||
4. Add the following environment variables to the function: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue(credentials): use a secret for |
||
- `MYSQL_HOST`: The hostname of the MySQL database | ||
- `MYSQL_USER`: The username of the MySQL user | ||
- `MYSQL_PASSWORD`: The password of the MySQL user | ||
- `MYSQL_DB`: The name of the MySQL database | ||
5. Deploy the function. | ||
6. Grab the function URL and use it to call the function. | ||
|
||
## Usage | ||
|
||
Call the function with a body to insert a row into the table. | ||
|
||
```console | ||
curl -X POST -d '{"email": "[email protected]"}' <function-url> | ||
Inserted [email protected] into the database | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?php | ||
function insertRecord($mysqli, $tableName, $data) { | ||
// Check if mysqli object is null | ||
if ($mysqli === null) { | ||
die("Database connection is not established."); | ||
} | ||
|
||
// Create table if it doesn't exist | ||
$createTableSql = "CREATE TABLE IF NOT EXISTS `$tableName` ( | ||
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, | ||
email VARCHAR(50), | ||
reg_date TIMESTAMP | ||
)"; | ||
|
||
if ($mysqli->query($createTableSql) === FALSE) { | ||
die("Error creating table: " . $mysqli->error); | ||
} | ||
|
||
// Prepare SQL statement | ||
$stmt = $mysqli->prepare("INSERT INTO $tableName (email, reg_date) VALUES (?, NOW())"); | ||
if ($stmt === false) { | ||
die("Error preparing statement: " . $mysqli->error); | ||
} | ||
|
||
// Bind parameters | ||
$stmt->bind_param("s", $data['email']); | ||
|
||
// Execute statement | ||
if ($stmt->execute() === false) { | ||
die("Error executing statement: " . $stmt->error); | ||
} | ||
|
||
echo "Record inserted successfully"; | ||
$stmt->close(); | ||
} | ||
|
||
function handle($event, $context) { | ||
$dbHost = getenv('MYSQL_HOST'); | ||
$dbUsername = getenv('MYSQL_USER'); | ||
$dbPassword = getenv('MYSQL_PASSWORD'); | ||
$dbName = getenv('MYSQL_DB'); | ||
|
||
$mysqli = new mysqli($dbHost, $dbUsername, $dbPassword, $dbName); | ||
$tableName = "users"; | ||
|
||
if ($mysqli === null) { | ||
die("Database connection is not established."); | ||
} | ||
|
||
if ($mysqli->connect_error) { | ||
die("Connection failed: " . $mysqli->connect_error); | ||
} | ||
|
||
// Extract user data from the request | ||
$data = json_decode($event['body'], true); | ||
if ($data === null || $data['email'] === null) { | ||
return [ | ||
"body" => "Email is required", | ||
"statusCode" => 400, | ||
]; | ||
} | ||
|
||
try { | ||
insertRecord($mysqli, $tableName, $data); | ||
} catch (Exception $e) { | ||
return [ | ||
"body" => "Error: " . $e->getMessage(), | ||
"statusCode" => 500, | ||
]; | ||
} | ||
|
||
return [ | ||
"body" => "Inserted " . $data['email'] . " into the database", | ||
"statusCode" => 200, | ||
]; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion(usability): add link to rdb page in console