Photo album with user management

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

    Photo album with user management

    Hi,

    I found a tutorial to create an oline photo album (php and mySQL). Great,
    but i'd like to add some user management and that's not in the tutorial :-))
    So i'am looking for an example, tutorial, or what ever that explanes me how
    to use user management with php and mySQL.
    If this is not the right place for this question, please advice me fot a
    better place.

    Regards,

    Robertico


  • Smitro

    #2
    Re: Photo album with user management

    Robertico wrote:[color=blue]
    > Hi,
    >
    > I found a tutorial to create an oline photo album (php and mySQL). Great,
    > but i'd like to add some user management and that's not in the tutorial :-))
    > So i'am looking for an example, tutorial, or what ever that explanes me how
    > to use user management with php and mySQL.
    > If this is not the right place for this question, please advice me fot a
    > better place.
    >
    > Regards,
    >
    > Robertico
    >
    >[/color]

    Don't tell me, you want to build a web site just
    like mine?
    www.digitalsnapper.net ;-)

    have a look at this tutorial it may help, It's
    been a while, so I had to google around...


    Comment

    • Doug Jones

      #3
      Re: Photo album with user management


      "Smitro" <nospam@myh0use .c0m> wrote in message
      news:43073978$1 @quokka.wn.com. au...[color=blue]
      > Robertico wrote:[color=green]
      >> Hi,
      >>
      >> I found a tutorial to create an oline photo album (php and mySQL). Great,
      >> but i'd like to add some user management and that's not in the tutorial
      >> :-))
      >> So i'am looking for an example, tutorial, or what ever that explanes me
      >> how to use user management with php and mySQL.
      >> If this is not the right place for this question, please advice me fot a
      >> better place.
      >>
      >> Regards,
      >>
      >> Robertico
      >>
      >>[/color]
      >
      > Don't tell me, you want to build a web site just like mine?
      > www.digitalsnapper.net ;-)
      >
      > have a look at this tutorial it may help, It's been a while, so I had to
      > google around...
      >
      > http://www.phpfreaks.com/tutorials/65/0.php[/color]
      I followed your advice and visited the above link and was
      immediatly stymied. Right away the author states: "Open up phpMyAdmin".
      Whazzat? Is there a prerequisit environment that I should be in?
      Seems freaky to me.

      digitalsnapper is cool - nice work. Is it a result of this particular
      tutorial?
      I'm an old time C/C++ programmer but band new to PHP.

      Regards,
      DJ


      Comment

      • Ewoud Dronkert

        #4
        Re: Photo album with user management

        On Sun, 21 Aug 2005 09:53:16 -0500, Doug Jones wrote:[color=blue]
        > immediatly stymied. Right away the author states: "Open up phpMyAdmin".
        > Whazzat?[/color]

        Just one (widely used) webbased interface to the mysql server, see
        phpmyadmin.net. Of course, you can always just type 'mysql' at the prompt.

        --
        E. Dronkert

        Comment

        • Doug Jones

          #5
          Re: Photo album with user management


          "Ewoud Dronkert" <firstname@last name.net.invali d> wrote in message
          news:avahg15gn2 g003r634a6ifrr6 cetbaotm3@4ax.c om...[color=blue]
          > On Sun, 21 Aug 2005 09:53:16 -0500, Doug Jones wrote:[color=green]
          >> immediatly stymied. Right away the author states: "Open up phpMyAdmin".
          >> Whazzat?[/color]
          >
          > Just one (widely used) webbased interface to the mysql server, see
          > phpmyadmin.net. Of course, you can always just type 'mysql' at the prompt.
          >
          > --
          > E. Dronkert[/color]

          Thanks
          I'll check it out.

          DJ


          Comment

          • James

            #6
            Re: Photo album with user management

            You might also like MySQL Query Browser:



            And if your only reason for using the web based thing is to run a
            script you can do that from the command prompt on your own machine
            presuming that the database is local, or that you have mysql installed
            and wish to connect to a remote database.

            mysql -uUSERNAME -p -h MYSQL_HOST_ADDR ESS Mydatabase <
            c:\scripts\scri ptname.sql

            Comment

            • Doug Jones

              #7
              Re: Photo album with user management


              "James" <starritt@gmail .com> wrote in message
              news:1124645260 .357050.157500@ g43g2000cwa.goo glegroups.com.. .[color=blue]
              > You might also like MySQL Query Browser:
              >
              > http://dev.mysql.com/downloads/query-browser/1.1.html
              >
              > And if your only reason for using the web based thing is to run a
              > script you can do that from the command prompt on your own machine
              > presuming that the database is local, or that you have mysql installed
              > and wish to connect to a remote database.
              >
              > mysql -uUSERNAME -p -h MYSQL_HOST_ADDR ESS Mydatabase <
              > c:\scripts\scri ptname.sql
              >[/color]
              I will also check this one out.

              In my case MySQL is hosted at my web provider site on a unix machine at some
              unknown location in the world.
              I'm at a windowsXP desktop.

              Regards

              DJ


              Comment

              • James

                #8
                Re: Photo album with user management

                Well -- if you do not know the address of the server then both methods
                will fail you -- ahh the joys :D

                Comment

                • Doug Jones

                  #9
                  Re: Photo album with user management


                  "James" <starritt@gmail .com> wrote in message
                  news:1124646600 .783858.310780@ o13g2000cwo.goo glegroups.com.. .[color=blue]
                  > Well -- if you do not know the address of the server then both methods
                  > will fail you -- ahh the joys :D
                  >[/color]
                  Didn't mean to imply that I don't know the address.
                  The statement was metaphorical.
                  I know my domain address and have all the needed privileges and ftp and
                  ..etc.
                  I've not yet used the MySQL services and very little of the PHP.
                  Just getting started and have a lot to learn.

                  DJ


                  Comment

                  Working...