How to make page transaction

Asked

Viewed 111 times

-1

inserir a descrição da imagem aqui

Hello I’m making a system in php and I would like to know how I can make it transition between pages , type has registration, change and report , how can I put link pages in input form in html .

This is my code below as I can do.

<section>

            <div class="circle"></div>
            <div class="thin"></div>
            <p>SISTEMA DE INVENTÁRIO</p> 

            <form  name="register" action="index.php"  method="post">
                    <input type="text" placeholder="Setor" name="setor" >
                    <input type="text" placeholder="Usuário" name="usuario">
                     <input type="text" placeholder="Hd" name="hd" >
                    <input type="text" placeholder="Memória" name="memoria">   
                     <input type="text" placeholder="Processador" name="processador" >
                    <input type="text" placeholder="Cd/Dvd" name="cd">   
                     <input type="text" placeholder="Placa Mãe" name="placam" >
                    <input type="text" placeholder="HostName" name="host">   
                    <input type="text" placeholder="Monitor/Patrimônio/Marca/Modelo" name="monitor">   
                     <input type="text" placeholder="Nobreak/Patrimônio/Marca/" name="nobreak" >
                    <input type="text" placeholder="Placa de Rede" name="placar">  
                    <input type="text" placeholder="Placa de Vídeo" name="placav">                   

                <input type="submit" value="Cadastrar">
                <input type="submit" value="Alterar" >
                <input type="submit" value="Relatório">


            </form>

        </section>

and this is the links to change and report Projects/reports.php http://localhost/Projects/search.php

How could I ?

  • I think you’re confusing transaction with transition.

  • that’s right my dear, how can I do it ?

1 answer

1


  1. You would have to create a file relatorio.php in the same directory as index.php
  2. Instead of <input type="submit" value="Relatório"> do <a href="relatorio.php"> Relatório </a>
  3. Do even for other pages.

I hope I’ve helped.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.