Gostaria que no formulário de OS ao clicar no nome buscar ele me levar até a lista de clientes, e ao clicar no botão carregar ele me devolvesse o nome do cliente dentro do campo cliente_id da ordem de serviço.
são duas tabela no banco a de clientes e a de OS
Algém me ajuda
OS
<?php
include("conexao.php");
include("funcao.php");
//$id = $_GET['id'];
//$cliente = buscarCliente($conexao, $id);
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ordem de serviço</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
</head>
<body>
<h1 class="text-center">Ordem de serviço</h1>
<div class="container">
<form action="adicionaOs.php" method="post">
<label class="form-group">Cliente</label>
<input class="form-control" name="cliente_id" type="text" value="<?=$cliente['nome']?>"><br/>
<td><a class="btn btn-primary"href="listar-clientes.php"><span class="glyphicon glyphicon-pencil"></span>Buscar CLiente</a>
</td>
<br/>
<label class="form-group">Serviço</label>
<input class="form-control" name="nome" type="text">
<br/>
<label class="form-group">preco</label>
<input class="form-control" name="preco" type="number">
<br/>
<button class="btn btn-default" type="submit">SALVAR</button>
</form>
</div>
</body>
</html>
Lista de Clientes
<?php
include('conexao.php');
include('funcao.php');
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Lista de Clkientes</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
</head>
<body>
<h1 class="text-center">Lista de Clientes</h1>
<div class="table table-responsive">
<table class="table">
<thead class="thead-inverse">
<tr>
<th>Nome</th>
<th>Email</th>
</tr>
</thead>
<?php $clientes = listarClientes($conexao);
foreach($clientes as $cliente) :
?>
<tr>
<td><?=$cliente['nome']?></td>
<td><?=$cliente['email']?></td>
<td><a class="btn btn-primary"href="altera-formulario-cliente.php?id=<?=$cliente['id']?>"><span class="glyphicon glyphicon-pencil"></span>Editar</a>
</td>
<td><a class="btn btn-success"href="altera-formulario-cliente.php?id=<?=$cliente['id']?>"><span class="glyphicon glyphicon-download"></span>Carregar</a>
</td>
</tr>
<?php
endforeach // fechar o foreach
?>
</table>
</div>
</body>
</html>