Search results

  1. freecrm

    Make Login Page

    I don't think you need to be on anything higher than basic for DB connection. It's far more likely your settings are wrong. Having said that, I've been on intermediate for a while...;)
  2. freecrm

    [REQ][50 Credits per issue]Beta Testers wanted

    Re: Beta Testers wanted - 50 creds per issue. bump
  3. freecrm

    Unique php page

    The I suggest you refer to my post 2.10 which details how to do this in the e-mail link. Any resultant Recordset won't work unless this variable is passed on because it doesn't have anything to look for. I would suggest that you temporarily echo the $memid on page 3 to make sure it is...
  4. freecrm

    Unique php page

    OK Check list: 1) On page 2, is the $memid structured as part of the URL link back to page 3? In other words, when you view Page 3 from the e-mailed link, does the address bar include something like http://www.yoursite.com/page3.php?memid=drRE3-iisd 2) On page 3, you need to create...
  5. freecrm

    Unique php page

    Well it depends on how you are using this character string. Could you explain the whole process in detail and I can try to help from there. i.e. - page 1 and what it does. page 2 etc... You say that you're using the $memid random string to form a URL link but how is this being done...
  6. freecrm

    Unique php page

    Now I'm with you!!! I still think you should use sessions as this will allow you to use as many "steps" as you want. However, when preparing the final link to the page, you need to extract the $memid from session memory and insert this as part of the URL that you are saving. e.g. <?php...
  7. freecrm

    [REQ][50 Credits per issue]Beta Testers wanted

    Re: Beta Testers wanted - 50 creds per issue. Works a treat - 50 creds given for this - thanks xP Edit: OK - I have gone through the above posts about cleansing quotes and apostrophes and seem to be missing something.. In the section where I prepare the variable prior to SQL query...
  8. freecrm

    Search Engine Optimisation

    Guess I'll have to buy a domain name then!!
  9. freecrm

    Unique php page

    You're missing the point. A "Session" is unique to the visitor even though you can't see it. When the previous stage has been completed by an individual and the random character string is saved to session memory, no-one else can access it. In other words, when the $memid is created, it...
  10. freecrm

    select onchange

    No offence taken. I've only been developing for about 12 months so I am stretched between having to reach deadlines and understanding what I'm doing! I've generally found that now I'm reaching the limits of what DW can achieve, I'm starting to learn! ;) Maybe I should go back to notepad!
  11. freecrm

    Password one way encryption.

    LMAO!!!! :laugh: Yeah - I was hoping to understand the methodology. i.e., if I have a variable $_POST['password'], how do I encrypt that before insertion for starters.. (not two way) Is this hashing? Md5? - I'm a bit lost with all the various types.. Second, I need to know for comparison...
  12. freecrm

    select onchange

    Part of this is a DW snippet but as anyone knows who uses DW, it doesn't let you have target="_blank". The script provided is an adaptation of the snippet to provide new window functionality. It was just faster to do!
  13. freecrm

    [REQ][50 Credits per issue]Beta Testers wanted

    Re: Beta Testers wanted - 50 creds per issue. Not sure how I would integrate this. And what happens if the user needs to enter a name with an apostrophe, like "O'Hara" or "O'Leary"? My current code just echos the $_POST value back to the field <input name="searchfield1" type="text"...
  14. freecrm

    Password one way encryption.

    OK this is probably simple but I'm not sure where to start. Registration process: 1) User enters password/ password inserted to DB (needs encryption) 2) system sends e-mail to user with validation link and confirmation of password (probably an un-encrypted copy). 3) user re-enters password...
  15. freecrm

    select onchange

    I've figured a way to produce a jump menu with target = blank. Shove this in your <head> <script type="text/javascript"> function MM_jumpMenuNewWindow (selObj, restore) { window.open(selObj.options[selObj.selectedIndex].value); if (restore) selObj.selectedIndex=0; }...
  16. freecrm

    [Help] Random Database?

    Lol - I messed a year or so back - with very damaging consequences!!
  17. freecrm

    [REQ][50 Credits per issue]Beta Testers wanted

    Re: Beta Testers wanted - 50 creds per issue. Thanks The login encryption certainly needs sorting and I'll be trying that tonight. (50 creds for spotting that) It shouldn't take 5 years!! lol. The visitor history is fine. Any good site will have a tracker and the display of IP addresses...
  18. freecrm

    Search Engine Optimisation

    I have almost completed my site which has been in development for about 4 months. (Sig. link) Looking at Google Webmaster Toolbox, I know that most of the pages are indexed correctly but I am having real difficulty getting it anywhere near the top!! I've also checked the referrals of all...
  19. freecrm

    Unique php page

    You don't call it from the URL any more. To clarify the difference between the two methods: 1) URL's: The variable (i.e. $memid) is sent from page 1 to page 2 by putting the variable into the URL (extension at the end of the URL .php?memid=<?php echo $memid;?>) This value then has to be...
Top