Gostaria de saber se tem como estar fazendo um sisteminha de cadastro em flash usando um banco em bloco de notas.
esse sistema de cadastro vou usar pra armazenar apenas dados pessoais das pessoas.
nome, e-mail, data de nascimento, telefone e endereço.
Só que não faço a minima idéia de como fazer esse sistema.
Alguem poderia me mostrar algum sistema pronto??
Fico no aguardo de respostas.
Obrigado
Mauricir - Web Designer - Digimagem High Definition
Site: www.digimagem.com.br
e-mail: mauricir@digimagem.com.br
- Fórum WMO
- → Viewing Profile: Tópicos: MauricirWM
Community Stats
- Group Usuários
- Active Posts 6
- Profile Views 1068
- Member Title Novato no fórum
- Age 37 years old
- Birthday June 29, 1988
-
Sexo
Não informado
-
Localidade
Matão-SP
-
Interesses
Aprender e ajudar o pessoal nesse forum.<br />
0
Neutral
User Tools
Topics I've Started
Sistema De Cadastro.
18/06/2008, 13:36
Video
06/03/2008, 09:46
Bom dia, estou desenvolvendo um projeto q contem video.
Mais não estou conseguindo fazer os vídeos carregar antes da execução, qndo aplico o loading ele carrega apenas a página e o vídeo vai bufferinzando, que no caso eu gostaria que buferizasse td antes, pra depois executar o vídeo sem parar.
Esse projeto esta em AS 2.0.
Obrigado desde já.
Mauricir
Mais não estou conseguindo fazer os vídeos carregar antes da execução, qndo aplico o loading ele carrega apenas a página e o vídeo vai bufferinzando, que no caso eu gostaria que buferizasse td antes, pra depois executar o vídeo sem parar.
Esse projeto esta em AS 2.0.
Obrigado desde já.
Mauricir
Sistema De Atualização
29/11/2007, 08:53
to montando um sisteminha de atualização
na hora q eu clico no link q criei pra alterar, ele não altera, já revisei o código
mais até agora não axei erro nenhum
teria como vcs darem uma olhada no código por gentileza?
esta parando nesta página
[codebox]<?PHP
include "verifica.php";
$nome=$_COOKIE["nome"];
?>
<?php
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt order by id_edit desc limit 10";
$resultado=mysql_query($sql);
?>
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="imgs/topo.gif" width="778" height="197" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center"><form id="form" name="form" method="post" action="alterar_sucesso.php">
<table width="330" border="0">
<tr>
<td width="50" align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Título
:</font></strong></td>
<td width="270" valign="middle"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> <?php echo "$pegar[id_edit]"; ?>
<?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
?>
<input name="titulo" type="text" value="<?php echo "$pegar[titulo]"; ?>" />
</font></strong></td>
</tr>
<tr>
<td align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Texto:</font></strong></td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<textarea name="texto" cols="50"rows="7" id="texto"><?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
echo "$pegar[texto]";
?>
</textarea>
</font></strong></td>
</tr>
<tr>
<td> </td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input name="submit" type="submit" value="Alterar" />
</font></strong></td>
</tr>
</table>
</form>
<br>
<p></p>
</td>
</tr>
</table>
<p> </p>
<p><br>
</p>[/codebox]
na hora q eu clico no link q criei pra alterar, ele não altera, já revisei o código
mais até agora não axei erro nenhum
teria como vcs darem uma olhada no código por gentileza?
esta parando nesta página
[codebox]<?PHP
include "verifica.php";
$nome=$_COOKIE["nome"];
?>
<?php
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt order by id_edit desc limit 10";
$resultado=mysql_query($sql);
?>
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="imgs/topo.gif" width="778" height="197" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center"><form id="form" name="form" method="post" action="alterar_sucesso.php">
<table width="330" border="0">
<tr>
<td width="50" align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Título
:</font></strong></td>
<td width="270" valign="middle"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> <?php echo "$pegar[id_edit]"; ?>
<?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
?>
<input name="titulo" type="text" value="<?php echo "$pegar[titulo]"; ?>" />
</font></strong></td>
</tr>
<tr>
<td align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Texto:</font></strong></td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<textarea name="texto" cols="50"rows="7" id="texto"><?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
echo "$pegar[texto]";
?>
</textarea>
</font></strong></td>
</tr>
<tr>
<td> </td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input name="submit" type="submit" value="Alterar" />
</font></strong></td>
</tr>
</table>
</form>
<br>
<p></p>
</td>
</tr>
</table>
<p> </p>
<p><br>
</p>[/codebox]
Alterar Em Php
29/11/2007, 08:21
to montando um sisteminha de atualização
na hora q eu clico no link q criei pra alterar, ele não altera, já revisei o código
mais até agora não axei erro nenhum
teria como vcs darem uma olhada no código por gentileza?
esta parando nesta página
na hora q eu clico no link q criei pra alterar, ele não altera, já revisei o código
mais até agora não axei erro nenhum
teria como vcs darem uma olhada no código por gentileza?
esta parando nesta página
<?PHP
include "verifica.php";
$nome=$_COOKIE["nome"];
?>
<?php
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt order by id_edit desc limit 10";
$resultado=mysql_query($sql);
?>
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="imgs/topo.gif" width="778" height="197" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center"><form id="form" name="form" method="post" action="alterar_sucesso.php">
<table width="330" border="0">
<tr>
<td width="50" align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Título
:</font></strong></td>
<td width="270" valign="middle"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> <?php echo "$pegar[id_edit]"; ?>
<?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
?>
<input name="titulo" type="text" value="<?php echo "$pegar[titulo]"; ?>" />
</font></strong></td>
</tr>
<tr>
<td align="right"><strong><font color="#7F5F27" size="2" face="Verdana, Arial, Helvetica, sans-serif">Texto:</font></strong></td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<textarea name="texto" cols="50"rows="7" id="texto"><?php
$id_edit=$_GET["id_edit"];
$conexao=mysql_connect("localhost","root","");
mysql_select_db("pava_atu");
$sql="SELECT * FROM edit_txt where id_edit='$id_edit'";
$resultado=mysql_query($sql);
or die ("Query invalida: " . mysql_error());
$pegar=mysql_fetch_array($resultado);
echo "$pegar[texto]";
?>
</textarea>
</font></strong></td>
</tr>
<tr>
<td> </td>
<td><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input name="submit" type="submit" value="Alterar" />
</font></strong></td>
</tr>
</table>
</form>
<br>
<p></p>
</td>
</tr>
</table>
<p> </p>
<p><br>
</p>
- Fórum WMO
- → Viewing Profile: Tópicos: MauricirWM
- Privacy Policy
- Regras ·



Postagens