webd/includes/machine.php
<?php/** * Eisen Frontend * http://eisen-dev.github.io * * Copyright (c) 2016 Alice Ferrazzi <alice.ferrazzi@gmail.com> - Takuma Muramatsu <t.muramatu59@gmail.com> * Dual licensed under the MIT or GPL Version 3 licenses or later. * http://eisen-dev.github.io/License.md * */ $user_id=$_SESSION['login_user'];print 'user name: '.$user_id;$stm = $dbh->prepare("select * from machine_information WHERE user_id = :user_id ;");$stm-> bindParam(':user_id', $user_id, PDO::PARAM_STR);$stm->execute();$data = $stm->fetchAll();$cnt = count($data); //in case you need to count all rowsInline control structures are not allowedforeach ($data as $i => $row) $ipaddress = $row['ipaddress']; $port = $row['port'];Expected 1 newline at end of file; 0 found print ('ip: '.$ipaddress.'<br>port: '.$port);