Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
quote:
1. I'd be cautious about posting my full database on a google archived
group. Your database structure and table names are now public. :(
2. Try sticking to one post - I'm starting to get winded walking around. ;O)
3. We'll get to that later, i might have question sabot this post, but is it
relegated to the post I answered below?
Copy link to clipboard
Copied
Copy link to clipboard
Copied
quote:
No worries. I've doen the same thing, but I just wanted to mention that if
you have your domain name, and your database details both listed in a post,
a search on google can bring that information up. Not that it's a huge
concern, but I'm kinda paranoid. :O)
quote:
hehe - I just wanted to keep you on one issue. 😉 I can't work on two at
once. I can work on the other after we get done with this one, but not both
at once.[/q[
No probs - I always appreciate, and never presume, any help I get on the forums!
quote:
Same here. It's been very hard for me to come to grips with PHP while
trying to figure out how to accomplish what I want.
For this specific question, you might seach the archives (I actually posted
a bit prematurely, before reading all of your post. I mainly just wanted to
grab your attention on the one project so we could get the other one fixed).
If you don't find anything, we'll get to it tomorrow.
For the adding records, I've created a straight insert candidate page, that then goes to a page to insert profiles, using checkboxes, with PHP code on the page that that page is submitted to something like :
<?php
$sql = "INSERT INTO CandidateProfiles (CandidateID, ProfileID) VALUES ";
foreach ($_POST['ckbox'] As $GetIndex => $GetValue){
if ($GetValue=='on'){
$sql .= "('{$_POST['CandidateID']}', '$GetIndex'), ";
}
}
$sql = rtrim($sql," ,") ;
mysql_query($sql);
?>
Although I haven't quite got it - the URL variable isn't getting carried through. I think it's something to do with opening a session to the database, but a bit vague about what I need to do there.
quote:
I think what you're looking for will be relatively easy to do, but I just
have to look at your code a bit more. I got tied up on a STUPID error
today. 🙂
It's often the way - I spent ages the other night trying to figure out why some styling wasn't working before I spotted I'd simply missed / inadvertantly deleted a closing curly bracket at the end of the a CSS style.
Iain
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more