PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
-- Hint: use Ctrl+Enter for SQL autocomplete create table node ( nid int unsigned auto_increment primary key, vid int unsigned null, type varchar(32) charset ascii not null comment 'The ID of the target entity.', uuid varchar(128) charset ascii not null, langcode varchar(12) charset ascii not null, constraint node__vid unique (vid), constraint node_field__uuid__value unique (uuid) )
Copy Clear
Copy Format Clear
<?php printf("Current PHP version: %s \n", phpversion()); $query = "SELECT VERSION() as version;"; $stmt = $mysqli->prepare($query); $stmt->execute(); $row = $stmt->get_result(); var_dump($row->num_rows);
Show:  
Copy Clear