Jump to content

djavet

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Posts posted by djavet

  1. Hello

     

    I try you code in this way:

    <?php require_once('../../Connections/connect.php'); ?>
    <?php
    mysql_select_db($database_connect, $connect);
    $query_rsInitials = "SELECT DISTINCT UPPER(LEFT(organisation,1)) FROM contacts ORDER BY organisation ASC";
    $rsInitials = mysql_query($query_rsInitials, $connect) or die(mysql_error());
    $row_rsInitials = mysql_fetch_assoc($rsInitials);
    $totalRows_rsInitials = mysql_num_rows($rsInitials);
    ?>
    <html>
    <head>
    <title>Untitled Document</title>
    </head>
    
    <body>
    <?php
    $alphabet=('A B C D E F G H I J K L M N O P Q R S T U V W X Y Z');
    while ($r=mysql_fetch_array($rsInitials)) {
    $initial=$r['organisation'];
    $links=str_replace("$initial","<a href=\"$initial.php\">$initial</a>",$alphabet);
    }
    echo("$links");
    ?>
    </body>
    </html>
    <?php
    mysql_free_result($rsInitials);
    ?>

     

    And I receive for every letter the error:

    Notice: Undefined index: organisation in g:\elce\www.website.ch\cms\address\letters.php on line 18

     

    Any idea where I'm wrong?

     

    Regards, Dom

  2. Hello

     

    I wich to make a address book with a initials navigation with link on. No problem until now, it's working perfectly (php + mysql wit Dreamweaver MX2004).

     

    Now I wisch to show in my initals naviagtion menu only links where I've entries regarding my address book name field.

     

    Per exemple:

    A B C D E F G H I J K etc...

     

    and i've only entrie on C and J, i wish on C and J a link.

    Other not.

     

    How it is possible to do that?

    A lot of thx for your help and time.

     

    Regards, Dom

×
×
  • 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.