Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Tom Loughlin #1
Private link
I am trying to create a link that will be accessed by a user after they have
completed a online form. Once they complete the form they will be emailed a
link to a page. I would like to make it so that you can not just cut and paste
the url to access this page......they should have to complete the online form
to get to the page. The site i am working on uses php.....i am fairly new to
php. Any help would be appreciated. thanks, -tom
Tom Loughlin Guest
-
Showing the email link from a database link
Hi Does anyone know how to have an email link show when showing the databse info in a repeating table. Here is the link... -
preserve the link to a single Excel cell when updating link
I want to import a single cell from an Excel spreadsheet into InDesign CS. Initially, I am placing a single cell into a text frame and get the... -
how do i link an object in Flash to an HTML link?
hi ppl, i want to make a link on an HTML page to an object (layer) in a flash window - this should be possible for multiple layers using... -
Private Fotopages - private Web Galleries WANTED!
Hello NG I am still seeking links to private (hobby / non professional/ amateur) fotopages in Australia -or any other Country to be used at... -
private folders
My documents were saved as a "private" folder. I found it necessary to reload my pc. When I did so, I found that I was unable to access my... -
Ross Riley #2
Re: Private link
The best way to do this is to use a session. Managing Sessions is fairly easy
in PHP. put a session_start(); command at the top of the page. Then after they
have submitted the form set a session variable along the lines of....
$_SESSION['completed']=1; Then redirect to the secret url and on that page do a
session_start(); again at the top of the page and then kick them off the page
if they don't have the variable set.... eg.. if(!isset($_SESSIOM['completed']))
{ header('Location:defaultPage.html'); } Hope this makes sense, if not post
again with your specific code......
Ross Riley Guest



Reply With Quote

