The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

> accessing mariadb from php
Jack42
post May 24 2022, 05:22 PM
Post #1





Group: Members
Posts: 8
Joined: 24-May 22
Member No.: 28,363



I am writing my first publicly accessible web form that will store data in a mariadb. I have about 20 fields that the user will put their information in and then on submit. The data will go into the mariadb. The database will NOT contain social security, credit card numbers, or other sensitive information. What are some good design tips?

<?php
$dbhost = 'localhost:3036';
$dbuser = 'guest';
$dbpass = 'guest123';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);

if(! $conn ) {
die('Could not connect: ' . mysql_error());
}

echo 'Connected successfully';
mysql_close($conn);
?>
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
 
Reply to this topicStart new topic
Replies
CharlesEF
post May 27 2022, 07:12 PM
Post #2


Programming Fanatic
********

Group: Members
Posts: 1,981
Joined: 27-April 13
From: Edinburg, Texas
Member No.: 19,088



It looks fine to me. At least nothing jumps out at me. Does it work?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Jack42
post May 31 2022, 09:51 AM
Post #3





Group: Members
Posts: 8
Joined: 24-May 22
Member No.: 28,363



QUOTE(CharlesEF @ May 27 2022, 07:12 PM) *

It looks fine to me. At least nothing jumps out at me. Does it work?

It works quite well. Thank you again for the assistance.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Posts in this topic


Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 27th April 2024 - 01:00 PM