【发布时间】:2022-01-13 01:24:23
【问题描述】:
我有以下数据库(名为“Account_info”):
|id (All Unique)|domain_name (All unique)| account_name |account_key|
|---------------|------------------------|----------------|-----------|
| 1 |example.com |account_23657612|889977 |
| 2 |example.net |account_53357945|889977 |
| 3 |example.edu |account_53357945|889977 |
| 4 |example.xyz |account_93713441|998822 |
我希望在此数据库中搜索域“example.net”并将该域的“帐户密钥”列作为变量返回。
例子:
搜索词:example.net
回复:889977
到目前为止我的代码:
$domainSearch = "example.net";
$sql = mysqli_query($connect,"SELECT `account_name` FROM `Account_info` WHERE `domain_name`='$domainSearch'");
if($sql){
//Some code here that sets the variable "result" to "889977"
}
【问题讨论】: