Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

This repository contains a simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database using PHP (via mysqli).

License

NotificationsYou must be signed in to change notification settings

mariadb-developers/php-quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository contains a simple web application that demonstrates how to quickly connect to and communicate with aMariaDB database usingPHP (viamysqli).

⚠️ Interested in using MariaDB and PHP withPDO (PHP Data Objects)? Check out the quickstarthere!

Getting Started

The application in this repository demonstrates how to:

  • Connect to a MariaDB database usingmysqli
  • Execute queries (SELECT,UPDATE,INSERT andDELETE) to managecontact data (like a digitalrolodex)
  • Use prepared statements

Prepare the database

The application relies on a single database (rolodex) that contains a single table (contacts). You can find the necessary SQL for setting up the environment inschema.sql.

Run the application

After you'vepulled down this repository, follow these steps to get the app up and running:

  1. Update the database configuration settings inconfig.php (which is used across the app) to point toyour MariaDB database.

    Example configuration:

    $databaseHost ='127.0.0.1';$databaseUsername ='user_name';$databasePassword ='********';$databaseName ='rolodex';

    Note: Check out theconfig_skysql.php file for an example of how to connect toMariaDB SkySQL.

  2. Run the application using thebuilt-in web server.

    $ php -S localhost:5000

Helpful Resources

Support and Contribution

Please feel free to submit PR's, issues or requests to this project directly.

If you have any other questions, comments, or looking for more information on MariaDB please check out:

Or reach out to us directly via:

License

License

About

This repository contains a simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database using PHP (via mysqli).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp