hi there i am newbee in PHP and i need some help, how can i user the elements stored in my database for my navigation bar??

<?php
$keyword=$_POST['keyword'];

$con=mysql_connect("localhost","root");
        if(!$con)
        {
            die("could not connect");
        }
        mysql_select_db('cms') or die("could not select db");

        $sql= "select value from cms where keyword='$keyword'";
        $result =mysql_query($sql);

            if(!$result)
                {
                    echo "sql not successfully run";
                }
                    if(mysql_num_rows($result)==0)
                    {
                        echo "no rows available";
                        exit;
                    }
                        while($row=mysql_fetch_assoc($result))
                        {
                        echo '<a href="">'. $row['value']. '</a>';

                        }
        mysql_free_result($result);
?>

i just select it, how can I categorize them on the navigation??

example:
In my database I stored,
Home,Profile,FAQ

how can i call them one by one??

what are other columns in your cms table

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.