assigning passwords to online presenations

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default assigning passwords to online presenations

    I created my website in Dreamweaver and have uploaded some powerpoint
    presentations for my customers. I want to be able to assign a password for each
    presentation so that only that customer can preview. Can anyone help me with
    this? I'm needing help asap. thank you!

    nsjuly26 Guest

  2. Similar Questions and Discussions

    1. assigning variable values in tk
      I'm trying to create a series of buttons in tk using a loop similar to this (metacode): sub create_buttons { for ($x = 1..3) { create button...
    2. Assigning a var to a combo box?
      Hi Everyone, I'm just learning Flash MX and am trying to create a form which emails the results... I found an easy template to use with php which...
    3. Assigning Numbers
      I am relatively new to FM and am trying to figure out a solution to this problem; A database has x number of records all with the assigned number...
    4. assigning recordsource to tab
      "Jim" <creveille@excite.com> wrote in message news:0a3d01c35527$a4d95d60$a601280a@phx.gbl... Using the Change event of the TabControl and...
    5. Professional Photographers - Sell your Photos Online , Online Proofing, Watermarking, Image Protection, and more.
      On 6 Jul 2003 11:40:28 -0700, in <9d2caaf1.0307061040.a857786@posting.google.com>, bluearchtop@my-deja.com (Ted Smith) said: Too expensive....
  3. #2

    Default Re: assigning passwords to online presenations

    I need something similar, only simpler. I need all the members of a group to
    use a password to access a single page using the same password. You'd think
    someone could write an extension for it. I'm a graphic designer, not a
    programmer, and want something SIMPLE.

    lwbolick Guest

  4. #3

    Default Re: assigning passwords to online presenations

    nsjuly26
    If you were to put the password through powerpoint iteslf (top menu bar
    TOOLS>OPTIONS>SECURITY)
    shouldn't that work ? That was the individual presentation has its own
    password. It should work for everyday users, maynot work for hackers.

    Iwbolick

    Most likely your hosting service provider would provide such a facility, a
    folder which is password protected and the contents you put in there would be
    accessible through a username and password. The other option is to use
    asp/php/coldfusion etc. I am sure there mustbe some simple scripts for this
    too. The problem is that html forms will collect the data but you need
    something to process, compare the form data to validate it.
    Hopefully someone more knowledgeable may have a simpler solution

    jasan3114 Guest

  5. #4

    Default Re: assigning passwords to online presenations

    it is quite simple to password protect a page or a set of pages with php. if
    you have a keyword for example for each presentation you can simply make the
    people enter this before it will show the link to the download.

    add this code where ever you want the form:

    <?php
    $keyword='what ever you want';

    if($_POST['keyword']==$keyword){
    //this is where you show the link
    ?><a href="download.php">Download Presentation</a><?php
    }else{
    //if the keyword was submitted and is incorrect display error
    if(isset($_POST['keyword'])){echo '<p>The access key you entered is
    incorrect.</p>';}

    //show the keyword form
    ?><form action="<?php $_SERVER['PHP_SELF']; ?>" method="post" name="form">
    Please enter the access key to download this file...
    <input name="keyword" type="text" size="30" />
    <input name="submit" type="submit" value="Submit" />
    </form>
    <?php } ?>


    digitalus media Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139