Ir para conteúdo

POWERED BY:

Biel.

[Resolvido] salvar nova ordem do menu

Recommended Posts

olá pessoal.  Ao clicar no menu e em seguida usar seta pra cima ou pra baixo o menu é movido de ordem, até aqui tudo ok.  O problema é que não consigo salvar no Bd a nova ordem do menu. Alguma luz de como resolver isto? 

tab_menu
menu_id  menu_nome   menu_order
11         verde       1
12         amarelo     2
13         azul        3
14         branco      4

....

<?php
$sqlVF = mysqli_query($ggCon, "SELECT * FROM tab_menu  ORDER BY menu_order ASC  ");
$contador=1;
while($linha = mysqli_fetch_array($sqlVF)){
$menu_id        = $linha['menu_id'];
$menu_nome      = $linha['menu_nome'];
$menu_order     = $linha['menu_order'];
}
?>

<?php

@$VGT_posicoes 	= $_POST['recordsArray'];
$VGT_newOrder = 1; 
foreach ($VGT_posicoes as $VGT_valorId) {
$sqlVF = mysqli_query($ggCon, "UPDATE tab_menu SET 
menu_order ='".$menu_order."' 
WHERE menu_order ='".$VGT_valorId."'  "); 
$VGT_newOrder = $VGT_newOrder + 1;
}

?> 

...

<form action="<?php echo $phpSelf;?>" method="post"  >

<table id="table" border="1">
    
    <tr> <td></td> </tr>

    <?php
    $sqlVF = mysqli_query($ggCon, "SELECT * FROM tab_menu ORDER BY menu_order ASC   ");
	$contador=1;
    while($linha = mysqli_fetch_array($sqlVF)){
    $menu_id      = $linha['menu_id'];
    $menu_nome    = $linha['menu_nome'];
    $menu_order    = $linha['menu_order'];
    ?>

     <tr> <td><input type="text" id="recordsArray_<?php echo $menu_id;?>" name="menu_order" value="<?php echo $menu_nome;?>"></td> </tr>

    <?php } ?>
      
    </table>   


<input type="submit" name="enviar" value="Salvar">  

</form>

...


        <button onclick="upNdown('up');">&ShortUpArrow;</button>
        <button onclick="upNdown('down');">&ShortDownArrow;</button>
        
        <script>
            
            var index; 
            function getSelectedRow()
            {
                var table = document.getElementById("table");
                for(var i = 1; i < table.rows.length; i++)
                {
                    table.rows[i].onclick = function()
                    {
            
                        if(typeof index !== "undefined"){
                            table.rows[index].classList.toggle("selected");
                        }
                       
                        index = this.rowIndex;
                        this.classList.toggle("selected");

                    };
                }
                    
            }
  

            getSelectedRow();
            
            
            function upNdown(direction)
            {
                var rows = document.getElementById("table").rows,
                    parent = rows[index].parentNode;
                 if(direction === "up")
                 {
                     if(index > 1){
                        parent.insertBefore(rows[index],rows[index - 1]);

                        index--;
                    }
                 }
                 
                 if(direction === "down")
                 {
                     if(index < rows.length -1){
                        parent.insertBefore(rows[index + 1],rows[index]);
                        index++;
                    }
                 }
            }
            
        </script>

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

Estou começando a testar, mas a 2a. listagem escreveu

 

@$VGT_posicoes 	= $_POST['recordsArray'];

Vou testar sem o @.

 

--------------------

Não estava conseguindo botar o menu selecionado no topo, eu alterei o JavaScript assim:

function upNdown(direction){
    rows = table.rows
    parent = rows[index].parentNode
    if(direction === "up"){
        if(index!=0){parent.insertBefore(rows[index],rows[index - 1]);index--;}}}

--------------------

Consegui resolver, mas eu tirei o botão descer para diminuir o código.

 

<?php
$ggCon=new mysqli("localhost","root","","astudy");
if(!isset($_POST['recordsArray'])){goto inicio;} else {
    $VGT_posicoes=$_POST['recordsArray'];
    foreach ($VGT_posicoes as $menu_order => $menu_nome) {
        mysqli_query($ggCon, "update tab_menu set menu_order=$menu_order 
			where menu_nome='$menu_nome'");}} 
inicio:?>
<form method=post>
<table id=table style=border:1>
<?php
$sqlVF = mysqli_query($ggCon, "SELECT * FROM tab_menu ORDER BY menu_order ASC");
while($linha = mysqli_fetch_array($sqlVF)){
    $menu_id= $linha['menu_id'];
    $menu_nome= $linha['menu_nome'];
    $menu_order= $linha['menu_order'];
    echo "<tr><td><input id='recordsArray_$menu_id' name=recordsArray[] 
		value='$menu_nome' onclick=getSelectedRow()>";} ?>
</table>   
<input type=submit value=Salvar>
</form>
<button onclick="upNdown('up');">&ShortUpArrow;</button>
<script>
function getSelectedRow(){
    for(var i = 1; i < table.rows.length; i++){
        table.rows[i].onclick = function(){
            if(typeof index !== "undefined"){
                table.rows[index].classList.toggle("selected");}
            index = this.rowIndex;
            this.classList.toggle("selected");};}}
function upNdown(direction){
    rows = table.rows
    parent = rows[index].parentNode
    if(direction === "up"){
        if(index!=0){parent.insertBefore(rows[index],rows[index - 1]);index--;}}}
</script>

 

Compartilhar este post


Link para o post
Compartilhar em outros sites
5 horas atrás, Frank K Hosaka disse:

Estou começando a testar, mas a 2a. listagem escreveu

 


@$VGT_posicoes 	= $_POST['recordsArray'];

Vou testar sem o @.

 

--------------------

Não estava conseguindo botar o menu selecionado no topo, eu alterei o JavaScript assim:


function upNdown(direction){
    rows = table.rows
    parent = rows[index].parentNode
    if(direction === "up"){
        if(index!=0){parent.insertBefore(rows[index],rows[index - 1]);index--;}}}

--------------------

Consegui resolver, mas eu tirei o botão descer para diminuir o código.

 


<?php
$ggCon=new mysqli("localhost","root","","astudy");
if(!isset($_POST['recordsArray'])){goto inicio;} else {
    $VGT_posicoes=$_POST['recordsArray'];
    foreach ($VGT_posicoes as $menu_order => $menu_nome) {
        mysqli_query($ggCon, "update tab_menu set menu_order=$menu_order 
			where menu_nome='$menu_nome'");}} 
inicio:?>
<form method=post>
<table id=table style=border:1>
<?php
$sqlVF = mysqli_query($ggCon, "SELECT * FROM tab_menu ORDER BY menu_order ASC");
while($linha = mysqli_fetch_array($sqlVF)){
    $menu_id= $linha['menu_id'];
    $menu_nome= $linha['menu_nome'];
    $menu_order= $linha['menu_order'];
    echo "<tr><td><input id='recordsArray_$menu_id' name=recordsArray[] 
		value='$menu_nome' onclick=getSelectedRow()>";} ?>
</table>   
<input type=submit value=Salvar>
</form>
<button onclick="upNdown('up');">&ShortUpArrow;</button>
<script>
function getSelectedRow(){
    for(var i = 1; i < table.rows.length; i++){
        table.rows[i].onclick = function(){
            if(typeof index !== "undefined"){
                table.rows[index].classList.toggle("selected");}
            index = this.rowIndex;
            this.classList.toggle("selected");};}}
function upNdown(direction){
    rows = table.rows
    parent = rows[index].parentNode
    if(direction === "up"){
        if(index!=0){parent.insertBefore(rows[index],rows[index - 1]);index--;}}}
</script>

 

Frank, funcionou perfeitamente, Obrigado !

Compartilhar este post


Link para o post
Compartilhar em outros sites

Crie uma conta ou entre para comentar

Você precisar ser um membro para fazer um comentário

Criar uma conta

Crie uma nova conta em nossa comunidade. É fácil!

Crie uma nova conta

Entrar

Já tem uma conta? Faça o login.

Entrar Agora

  • Conteúdo Similar

    • Por Biel.
      Olá pessoal. Ao digitar um texto qualquer no input e pressionar submit o valor do atributo href é alterado temporariamente. Como alterar permanentemente no corpo do documento  o valor do atributo href, digitando um nome de link qualquer no campo input e em seguida submit ?
      <!DOCTYPE html> <html> <head> <style> input { width: 100%; font-size: 20px; } textarea { width: 100%; font-size: 16px; height: 200px; } .class88 { margin-top: 50px; padding: 10px; max-width: 100px; } </style> </head> <body> <h2> alterar valor do atributo href</h2> digite um texto qualquer <input type="text" class="class42" value=""> <a id="linkToChange" href="teste5.php" class="class43"></a> <input type="submit" class="class88" value="enviar" onclick="alterarHref()"> <script> function alterarHref() { // pega o valor da class42 var valorDaclass42 = document.querySelector('.class42').value.trim(); // altera o valor do atributo href para o valorDaclass42 sugerido document.querySelector('.class43').setAttribute('href', valorDaclass42); console.log("Href alterado:", valorDaclass42); } </script> </body> </html>  
    • Por Biel.
      Olá pessoal. BannerA está funcionando normalmente. Como usar mesmo script para bannerB e bannerC.
      <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Banner Aleatório</title> <style> /* Estilos opcionais para o banner */ #divPai { margin: auto; border: 2px solid red; } #bannerA { width: 240px; height: 480px; overflow: hidden; position: relative; } #bannerA img { width: 100%; height: auto; position: absolute; top: 0; left: 0; transition: 1.5s ease-in; } #bannerA img.active { opacity: 1; } </style> </head> <body> <div id="divPai"> <div id="bannerA" class="bannerA"> <a href="link1"><img src="image1.jpg" alt="Imagem 1"></a> <a href="link2"><img src="image2.jpg" alt="Imagem 2"></a> <a href="link3"><img src="image3.jpg" alt="Imagem 3"></a> </div> <!-- <hr> <div id="bannerB" class="bannerB"> <a href="link4"><img src="image4.jpg" alt="Imagem 4"></a> <a href="link5"><img src="image5.jpg" alt="Imagem 5"></a> <a href="link6"><img src="image6.jpg" alt="Imagem 6"></a> </div> <hr> <div id="bannerC" class="bannerC"> <a href="link7"><img src="image7.jpg" alt="Imagem 7"></a> <a href="link8"><img src="image8.jpg" alt="Imagem 8"></a> <a href="link9"><img src="image9.jpg" alt="Imagem 9"></a> </div> --> </div> <hr> <script> document.addEventListener("DOMContentLoaded", function() { // var banner = document.getElementById("divPai"); // var images = banner.querySelectorAll("img"); var images = document.querySelectorAll("#bannerA img"); // Função para exibir uma imagem aleatória function showRandomImage() { // Escolhe aleatoriamente um índice de imagem var randomIndex = Math.floor(Math.random() * images.length); // Define todas as imagens como ocultas images.forEach(function(img) { img.style.display = "none"; }); // Exibe a imagem aleatória images[randomIndex].style.display = "block"; } // Chama a função inicialmente e define um intervalo para exibir novas imagens a cada 3 segundos showRandomImage(); setInterval(showRandomImage, 1000); // makeSliderKind('.bannerA', 1000); // makeSliderKind('.bannerB', 2000); // makeSliderKind('.bannerC', 3000); }); </script> </body> </html>  
    • Por Biel.
      Olá pessoal. O banner abaixo está funcionando e o link acompanha o banner, até aqui tudo ok ! Quero muito fazer uma transição suave entre uma image e outra, colocando as propiedades e valores no css ou diretamente no javascript e nada de propiedades e valores no html através do style . Se possível coloque no código somente o que precisa . Obrigado!
      <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Banner</title> <style> /* Estilos opcionais para o banner */ .banner { width: 240px; height: 480px; overflow: hidden; position: relative; } .banner img { width: 100%; height: auto; position: absolute; top: 0; left: 0; transition: 1.5s ease-in; } .banner img.active { opacity: 1; } </style> </head> <body> <div class="banner" id="banner"> <a href="link1" class="ggg"><img src="image1.jpg" alt="Imagem 1"></a> <a href="link2" class="ggg"><img src="image2.jpg" alt="Imagem 2"></a> <a href="link3" class="ggg"><img src="image3.jpg" alt="Imagem 3"></a> <a href="link4" class="ggg"><img src="image4.jpg" alt="Imagem 4"></a> <a href="link5" class="ggg"><img src="image5.jpg" alt="Imagem 5"></a> </div> <script> document.addEventListener("DOMContentLoaded", function() { var banner = document.getElementById("banner"); var images = banner.querySelectorAll("img"); // Função para exibir uma imagem aleatória function showRandomImage() { // Escolhe aleatoriamente um índice de imagem var randomIndex = Math.floor(Math.random() * images.length); // Define todas as imagens como ocultas images.forEach(function(img) { img.style.display = "none"; }); // Exibe a imagem aleatória images[randomIndex].style.display = "block"; } // Chama a função inicialmente e define um intervalo para exibir novas imagens a cada 3 segundos showRandomImage(); setInterval(showRandomImage, 3000); }); </script> </body> </html>  
       
    • Por Biel.
      Olá pessoal. O banner abaixo está funcionando normalmente, mas a transição entre uma imagem e outra está um tanto truculenta. Quero deixar suave. Como resolver isso? Obrigado !
      <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>transition suave entre uma image e outra</title> <style> #banner { width: 240px; height: 480px; overflow: hidden; position: relative; } #bannerGG { width: 100%; height: auto; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 1s ease-in-out; } /* #tete:active { opacity: 1; } */ </style> </head> <body> <div id="banner"> <img class="bannerGG" src="imagem1.png" alt="Image 1"> <img class="bannerGG" src="imagem2.png" alt="Image 2"> <img class="bannerGG" src="imagem3.png" alt="Image 3"> <img class="bannerGG" src="imagem4.png" alt="Image 4"> <img class="bannerGG" src="imagem5.png" alt="Image 5"> </div> <script> const image = document.querySelectorAll('.bannerGG'); const banner = document.getElementById('banner'); function showRandomImage() { const randomIndex = Math.floor(Math.random() * image.length); const randomImage = image[randomIndex]; const imgElement = document.createElement('img'); imgElement.src = randomImage.src; const linkElement = document.createElement('a'); linkElement.appendChild(imgElement); banner.innerHTML = ''; banner.appendChild(linkElement); } showRandomImage(); setInterval(showRandomImage, 3000); </script> </body> </html>  
    • Por Biel.
      Olá pessoal. O banner abaixo está funcionando, mas quero que o link do banner venha da tag a  e não do javascript . Como resolver? 
      <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mostrar link do banner que está na tag a</title> <style> #banner { width: 240px; height: 480px; overflow: hidden; position: relative; } .banner-img { width: 100%; height: 100%; object-fit: cover; position: absolute; /* opacity: 0; */ transition: opacity 0.5s ease-in-out; } .banner-link { display: block; width: 100%; height: 100%; } </style> </head> <body> <div id="banner"> <a href="link147"><img class="banner-img" src="imagem1.png" alt="Image 1"></a> <a href="link254"><img class="banner-img" src="imagem2.png" alt="Image 2"></a> <a href="link350"><img class="banner-img" src="imagem3.png" alt="Image 3"></a> <a href="link462"><img class="banner-img" src="imagem4.png" alt="Image 4"></a> <a href="link538"><img class="banner-img" src="imagem5.png" alt="Image 5"></a> </div> <script> const images = document.querySelectorAll('.banner-img'); const banner = document.getElementById('banner'); function showRandomImage() { const randomIndex = Math.floor(Math.random() * images.length); const randomImage = images[randomIndex]; const imgElement = document.createElement('img'); imgElement.src = randomImage.src; imgElement.alt = randomImage.alt; imgElement.classList.add('banner-img'); const linkElement = document.createElement('a'); // linkElement.appendChild(imgElement); linkElement.href = randomImage.href; linkElement.classList.add('banner-link'); linkElement.href = "page" + (randomIndex + 1) + ".html"; // Link para cada imagem linkElement.appendChild(imgElement); banner.innerHTML = ''; banner.appendChild(linkElement); } showRandomImage(); setInterval(showRandomImage, 1000); </script> </body> </html> Resolvido,  Obrigado a todos !
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.