Results 1 to 5 of 5

Thread: Argument passing and databases

Threaded View

  1. #4
    You can use a url as Aardpsymon suggested.

    Using ASP you can retrieve those variables using

    Code:
    variable = request.querystring("variable")
    Instead of using the querystring you can use a form. To get the form values use

    Code:
    variable = request.form("variable")
    For more info try this link..
    http://www.w3schools.com/asp/asp_ref_request.asp

    As for saving images into a db - this link might help (even if you don't use ASP.NET it should still give you some good pointers.

    http://www.stardeveloper.com/article...1033101&page=1


    Good Luck!
    Last edited by omin; May 2nd, 2007 at 02:31 PM.
    \"Clouds are not spheres, mountains are not cones, coastlines are not circles, and bark is not smooth,
    nor does lightning travel in a straight line.\" -Benoit Mandelbrot

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •