在Webarena上的Ubuntu第22版本
总结
我在Webarena上尝试了Ubuntu 18.04。
我尝试了MySQL 5.7。
我尝试了CRUD操作。
创造
<?php
$db = new PDO("mysql:host=localhost;dbname=mydb;", 'arena', 'pass');
$sql = 'insert into test values(null, "name", 20, now())';
$res = $db->query($sql);
if ($res) print "ok\n";
?>
阅读
<?php
$db = new PDO("mysql:host=localhost;dbname=mydb;", 'arena', 'pass');
$sql = 'select * from test';
$res = $db->query($sql);
if ($res) print "ok\n";
?>
更新
<?php
$db = new PDO("mysql:host=localhost;dbname=mydb;", 'arena', 'pass');
$sql = 'update test set age=80 where id=1';
$res = $db->query($sql);
if ($res) print "ok\n";
?>
删除
<?php
$db = new PDO("mysql:host=localhost;dbname=mydb;", 'arena', 'pass');
$sql = 'delete from test where id=1';
$res = $db->query($sql);
if ($res) print "ok\n";
?>
以上。