ola pessoal eu gostaria de ajuda para fazer um trabalho onde eu tenho que fazer um sistema bancário, com as seguintes funções:
saque, deposito,consulta,aplicação
e eu estou iniciado agora em php e tenho um pouco de dificuldade
eu fiz a pagina html a seguir :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Banco 2ºWA Pagina Inicial</title>
<link rel="stylesheet" type="text/css" href="view.css" media="all">
<script type="text/javascript" src="view.js"></script>
</head>
<body id="main_body" >
<img id="top" src="top.png" alt="">
<div id="form_container">
<h1><a>Banco 2ºWA</a></h1>
<form id="form_31080" class="appnitro" method="post" action="">
<div class="form_description">
<center><h2>Bem Vindo ao Sistema </h2>
<p>Banco 2ºWA</p></center>
<p>Usuario :</p>
</div>
<ul >
<label class="description" for="element_2">Qual operação você gostaria de executar? </label>
<span>
<input id="element_2_1" name="element_2_1" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_2_1">Deposito</label>
<input id="element_2_2" name="element_2_2" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_2_2">Saque</label>
<input id="element_2_3" name="element_2_3" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_2_3">Consulta</label>
<input id="element_2_4" name="element_2_4" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_2_4">Aplicação</label>
</span>
</li>
<li class="buttons">
<input type="hidden" name="form_id" value="31080" />
<input type="submit" name="calcular" value="Executar" style="color:wheat;background-color:orange" /></td>
</li>
</ul>
</form>
<div id="footer">
</div>
</div>
<img id="bottom" src="bottom.png" alt="">
</body>
</html>
também fiz a pagina inicial
<html>
<head>
<title>Formulário estilizado</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css">
#todoform {
background: #0e3242;
font: 12px arial, verdana, helvetica, sans-serif;
border-top: 8px solid #cfcfcf;
border-left: 8px solid #cfcfcf;
border-right: 8px solid #696969;
border-bottom: 8px solid #696969;
border-collapse: collapse;
color: #ff9900;
}
#todoform th {
background:#000000;
padding:3px;
font: bold 15px arial, verdana, helvetica, sans-serif;
border-bottom:1px solid #cfcfcf;
}
#todoform td {
padding:3px;
}
#todoform input {
background:#fff;
border:1px dashed #cfcfcf;
}
#todoform textarea {
border:1px dashed #cfcfcf;
background:#fff;
}
#todoform input.botao {
background: #000000;
color: #00FF99;
border: 2px solid #ffffff;
}
</style>
</head>
<body>
<!--0e3242 cor do fundo ccff66 cor das letras b5b5b5 fundo da caixa -->
<form action="Exemplo.php" method="get" >
<table id="todoform">
<tr>
<th colspan="2">Banco 2°WA</th>
</tr>
<tr>
<td><label>Nome:</label>
</td>
<td><input name="nome" type="text" size="22" style="font-style:italic;"></td>
</tr>
<td>Senha:</td><td><input type="password" name="senha" value="senha" />
</td>
</tr>
<tr>
<td></td><td> <a href="#"><button>Acessar</button></a>
</tr>
<tr></td>
</tr>
<tr>
<tr>
</tbody>
</table>
</form>
</div>
</body>
</html>
fico grato a todos ,obrigado pela ajuda