关闭。这个问题需要详细或明确。它目前不接受答案。
**想改进这个问题吗?**编辑这篇文章,添加细节并澄清问题。
6小时前关门了。
改进这个问题
// dbcon.php
<?php
// Connect to the database
mysql_select_db('ehap',mysql_connect('localhost','root',''))or die(mysql_error());
?>
您好,如何将下面的代码转换为PHP5.6格式?上面是我的连接字符串。我真的需要这个来工作。谢谢和问候。
<?php
require_once('dbcon.php');
date_default_timezone_set("Asia/Manila");
$sql = "SELECT id, title, start, end, color FROM events_demo ";
$req = $bdd->prepare($sql);
$req->execute();
$events = $req->fetchAll();
?>
1条答案
按热度按时间wfsdck301#
可能是这样的。