</tr>
            
            <tr>
                <td><button type="submit">Göster</button></td>
            </tr>
        </table>
    </form>
</center>
<br>
<?php 
if ($_POST) {
    ?>
<table border="1">
    <?php 
    $istek = new SoapClient(null, array("uri" => "http//ufukpalavar-service", 'location' => 'http://localhost/PhpWebservice/ServicePhp.php'));
    $userList = $istek->parametreGoster(trim($_POST["ad"]));
    if (!empty($userList)) {
        ?>
    <tr>
        <th>Adı</th>
        <th>Soyadı</th>
        <th>Eposta</th>
    </tr>
    <?php 
        foreach ($userList as $list) {
            ?>
    <tr>
        <th><?php 
            echo $list["ad"];
            ?>
</th>