SAE上连接MySQL数据库_MySQL
程序员文章站
2022-04-21 13:10:54
...
在sae上部署自己的代码后,肯定是需要连接到sae 的数据库的,接下来看看如何实现数据库的连接。sae连接数据库已经被模块化, 只需要使用Saemysql类即可实现。
getData( $sql );$name = strip_tags( $_REQUEST['name'] );$age = intval( $_REQUEST['age'] );$sql = "INSERT INTO `user` ( `name`, `age`, `regtime`) VALUES ('" . $mysql->escape( $name ) . "' , '" . intval( $age ) . "' , NOW() ) ";$mysql->runSql($sql);if ($mysql->errno() != 0){ die("Error:" . $mysql->errmsg());}$mysql->closeDb();?>
上一篇: php heredoc 与 nowdoc
下一篇: 怎么防止刷新网页重复插入数据_PHP教程