Jump to content

Metasearching

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Metasearching's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Update: I managed to get it to work! Raw data is now randomly ordered: each email is given a random ID (using mt_rand), and after each insert the table is ordered by columnid (using ALTER TABLE/ ORDER BY) so there is no way I can determine the original order! thanks a bunch guys!
  2. Hi Tips, I think this is what I am looking for (raw data random order)! I will try this out tonight. Thanks to the both you!
  3. Hi KevinM1, Thanks for the clarification, re: inject versus insert. As for the tip you mentioned; if I did that, would it be impossible for me to order them in temporal order (e.g., prior to making the report)? Or would what you suggested useful only for shuffling report? I guess what I'm looking for is the ability to log in to the MySQL database and have no idea or technical ability to see the e-mails in order of insertion no matter what? I'm guessing with your suggestion, the shuffling would done only on the report export and not on the insertion itself, thus technically, I could still have access to the ordered e-mails?? Am I even making any sense? Thanks!
  4. Hi, I'm a researcher (and complete coding noob), and am planning a longitudinal study that requires e-mail follow-up with subjects taking an initial survey. For purposes of ethics/anonymity due to sensitive survey data, I'd like the acquired e-mails to be saved uncoupled from the survey responses; this is simple to deal with, and I use a basic PHP e-mail form, which injects the email address in a table in MySQL in a different server than the one used for the survey. The issue is that the e-mails are saved in the MySQL database in order of injection, thus it is still theoretically possible for me to link the e-mails back to the survey responses (which have a time stamp that I cannot remove). Ideally I would like not to be able (at all) to link the e-mails to the survey responses, and one way to do that (since I don't save the e-mail injection timestamps in MySQL) might be to have the e-mails saved in MySQL in a random order. Not sure if this is possible, and not even sure if this would be via PHP or MySQL side of things. The server is on godaddy and uses Starfield interface for MySQL but I cannot find an option for random insert/saving of table items (emails). They are saved in order of injection. Any solution for this? Thanks,
  5. I everyone, I think I posted in wrong area (should be in coding section). I will repost there, and await your responses
  6. Hi, I'm an researcher (and complete coding noob), and am planning a longitudinal study that requires e-mail follow-up with subjects taking an initial survey. For purposes of ethics/anonymity due to sensitive survey data, I'd like the acquired e-mails to be saved uncoupled from the survey responses; this is simple to deal with, and I use a basic PHP e-mail form, which injects the email address in a table in MySQL in a different server than the one used for the survey. The issue is that the e-mails are saved in the MySQL database in order of injection, thus it is still theoretically possible for me to link the e-mails back to the survey responses (which have a time stamp that I cannot remove). Ideally I would like not to be able (at all) to link the e-mails to the survey responses, and one way to do that (since I don't save the e-mail injection timestamps in MySQL) might be to have the e-mails saved in MySQL in a random order. Not sure if this is possible, and not even sure if this would be via PHP or MySQL side of things. The server is on godaddy and uses Starfield interface for MySQL but I cannot find an option for random insert/saving of table items (emails). They are saved in order of injection. Any solution for this? Thanks,
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.