J Stival Posted April 16, 2012 Report Share Posted April 16, 2012 Boa tarde, preciso desenvolver um simulador , como o do site http://www.cipavinil.com.br/simulador.htmConsigo pegar a cor e o percentual, mas não sei como preencher as celulas com as cores.<html><head></head><body><form id="form1" name="form1" method="post" action=""> <p> <label for="campo1">Azul</label> <input id="campo1" type="text" name="percentual[azul]" size=5" />| <label for="campo2">Verde</label> <input id="campo2" type="text" name="percentual[verde]" size="5" /> | <label for="campo3">Amarelo</label> <input id="campo3" type="text" name="percentual[amarelo]" size="5" /> <input type="submit" name="ok" id="ok" value="Enviar" /> </p></form><?phpif(isset($_POST['percentual])){ if(is_array($_POST['percentual'])){ foreach($_POST['percentual'] as $cor =>$indice){ }}}?></body></html> Quote Link to comment Share on other sites More sharing options...
0 Massaki Posted April 16, 2012 Report Share Posted April 16, 2012 O if (is_array) é desnecessário, visto que foi você quem definiu.Não consegui abrir o site, assim não tenho idéia de como você quer aproveitar o resultado do form Quote Link to comment Share on other sites More sharing options...
0 J Stival Posted April 16, 2012 Author Report Share Posted April 16, 2012 O if (is_array) é desnecessário, visto que foi você quem definiu.Não consegui abrir o site, assim não tenho idéia de como você quer aproveitar o resultado do formNesse site tem um similarhttp://www.herrevestimentos.com.br/simulad...p?linha=cristal Quote Link to comment Share on other sites More sharing options...
0 J Stival Posted April 16, 2012 Author Report Share Posted April 16, 2012 Resolvido! $cores = array(); $n=1; foreach($_POST['percentual'] as $cor =>$indice){ for($i=0;$i <$indice;$i++){ $cores[$n] = $cor; $n++; } } shuffle($cores); Quote Link to comment Share on other sites More sharing options...
Question
J Stival
Boa tarde, preciso desenvolver um simulador , como o do site http://www.cipavinil.com.br/simulador.htm
Consigo pegar a cor e o percentual, mas não sei como preencher as celulas com as cores.
<html>
<head>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<label for="campo1">Azul</label>
<input id="campo1" type="text" name="percentual[azul]" size=5" />
|
<label for="campo2">Verde</label>
<input id="campo2" type="text" name="percentual[verde]" size="5" />
|
<label for="campo3">Amarelo</label>
<input id="campo3" type="text" name="percentual[amarelo]" size="5" />
<input type="submit" name="ok" id="ok" value="Enviar" />
</p>
</form>
<?php
if(isset($_POST['percentual])){
if(is_array($_POST['percentual'])){
foreach($_POST['percentual'] as $cor =>$indice){
}}}
?>
</body>
</html>
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.