very simple drop-down list...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Joseph S.

    #16
    Re: very simple drop-down list...

    ***********
    (I am sorry to post in this fashion but I am trying to post this
    message since the past three hours, but am unable to, inspite of the
    fact that I have been regularly posting to at least five groups every
    day and suddenly everything seems to stop working - Google groups also
    shows me a confirmation of the post but somehow my posts do not appear
    - neither am I blocked or any such thing)
    ***********

    1)I get startup error messages:
    "cannot load c:\php\php_curl .dll - the specified file cannot be found"
    although the file is very much there at exactly that location
    Not only for this file but for many extension files like php_mysql.dll,
    php_oracle.dll, php_mssql.dll, php_exif.dll etc.

    2)the extensions_dir setting is "c:\php" without an ending backslash.

    3)The php.ini file is residing at c:\php

    4)The php.ini file in c:\windows has all extensions disabled so it does
    not look as though that php.ini file is the source of the messages

    5)There is a extension entry for php_win32api.dl l which also gives a
    not found error.
    Is it the older version of php_win32std.dl l, php_win32servic e.dll and
    php_win32schedu ler.dll files which are present but
    their names are not there by default in the php.ini ?

    *************** *************** *************** *************** *************** *************** ********
    6)How do I debug PHP like you can debug Java in Eclipse or NetBeans and
    C/C++ in MS Visual Studio?
    *************** *************** *************** *************** *************** *************** ********

    7)database access through odbc works.

    8)How do I install PHP as both a CGI extension under Apache 2.0.5x and
    as a module (php5apache2.dl l with a LoadModule in httpd.conf)

    Comment

    • Joseph S.

      #17
      Re: very simple drop-down list...

      test post please ignore

      Comment

      • Guest's Avatar

        #18
        Re: very simple drop-down list...

        In article <9hoti1938kffld fd3ptpmqienldat en49a@4ax.com>,
        Geoff Berrow <blthecat@ckdog .co.uk> wrote:
        [color=blue]
        >print "<OPTION value='".$line['year']."'>".$line['year']."</OPTION>";[/color]

        Or:

        printf("<OPTION value=\"%s\">%s </OPTION>",$line['year'],$line['year']);

        --
        Discussion and news concerning Yosemite National Park, the Sierra Nevada Mountains, Owens Valley, backpacking, hiking, camping and vacationing.

        Comment

        • Darkstar 3D

          #19
          Re: very simple drop-down list...

          Am I to understand that it is working now? Did you just modify the 2nd
          query and place it in the form code?

          By HTML source, I meant what you are getting as a result in browser.

          Comment

          • mars

            #20
            Re: very simple drop-down list...

            Darkstar 3D probably wrote the following stuff on 20/09/2005 1.22:[color=blue]
            > Am I to understand that it is working now? Did you just modify the 2nd
            > query and place it in the form code?[/color]

            now it is working with the code that I posted in the other message (the
            problem was caused by myself messing up with single/double quotes). :-)

            Comment

            • Bugz

              #21
              Re: very simple drop-down list...

              Why not just change the print for an echo ?

              Comment

              Working...