Jump to content

Recommended Posts

I got this clase to show the list

 

<?
class pages extends mysql {
       function load () {
                $activated = 1;
                $query = "SELECT page, link FROM pages WHERE activated = '$activated' ORDER BY posicion";
                parent::connect();
                $resultado = parent::query($query);
                $arr = parent::arr($resultado);
                echo '<ul>';
                foreach ($arr as $items) {
                        echo '<li><a href="'.$items['link'].'">'.$items['page'].'</a></li>';
                }
                echo '</ul>';
       }
}
?>

 

This are the other functions used in the class

<?
function query ($query) {
                $resultado = mysql_query($query);
                $test = mysql_num_rows($resultado);
                if ($test = 0) {
                   echo 'Error en peticion mysql';
                }
                else {
                     return $resultado;
                }
       }

       function arr ($resultado) {
                $arr = mysql_fetch_array($resultado);
                $test = array_count_values($arr);
                if ($test = 0) {
                echo 'El array no tiene valores';
                }
                else {
                     return $arr;
                }
       }
?>

 

And it just prints this

<ul><li><a href="H">H</a></li><li><a href="H">H</a></li><li><a href="?">?</a></li><li><a href="?">?</a></li></ul>

 

Is it a database  table data type error?

Link to comment
https://forums.phpfreaks.com/topic/109458-solved-problem-creating-menu-list/
Share on other sites

Cuidado...Carefull

 

if ($test = 0) {  //$test == 0   <--Esto es lo correcto.
        echo 'Error en peticion mysql';
}

 

También hay que revisar el foreach.

 

<?php
/*
El valor de $arr luego de obtener el resultado con fetch_array  es un array asociativo.... no hay necesidad de un foreach.
$arr = array( 'page' =>'algun valor..', 'link' => 'otro valor' );

Al ejecutar el foreach, $items obtiene el valor:

*/

foreach ($arr as $items){
  //$items = 'algun valor..'; <--
}

##
# Usted ocupa algo como lo siguiente...
##
while( $arr = mysql_fetch_array($resultado) ){
   echo '<li><a href="'.$arr['link'].'">'.$arr['page'].'</a></li>';
}

?>

Mmm the foreach was the error here, i have replaced it with the while, and i have corrected the if error too, thanks! =P

/

Mmm el foreach era el error creo.., lo reemplaze con el while y andubo bastante bien, tambien corregi el error del if, gracias ;)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.