Jump to content

PHP2005

Members
  • Posts

    69
  • Joined

  • Last visited

PHP2005's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Hi All, I have 50 checkboxes and when it display at the page it display all like at once in one column, so I am wonder how can I have it displayed in 2 column of 25 checkboxes. Any help will be appreciated. <?php foreach( $newrecordResult['valueLists']['Detail_Checkbox1'] as $key => $value ) { ?> <?php echo $value; ?> <?php } ?> Thank you
  2. Before we convert the groupwise e-mail to entourage the "send mail" feature was working fine. Now since I am using entourage it is not working at all. I tried to send a test email and I looked inside the entourage folders include the draft and I do not see the e-mail which was sent.
  3. yes, I did but it is empty
  4. Hi, I am trying to use "Send Mail" feature from filemaker, but for some reason after I migrate to entrourage the e-mail feature from Filemaker 9 is not working as it was working when I was using groupwise. Any idea what can be wrong
  5. Ok I finally got it working. <?php echo($viewRecord['valueLists']['Checkbox1'][0]);?>
  6. Hi all, I am trying to display the first record from an array list, but for some reason it is not working, any help will be appreciated. <?php foreach($AddFindRecord['data'] as $recordkey =>$recordDataFIND){ ?> <?php echo $recordDataFIND['Checkbox1'][0]; ?> <?php } ?> it is showing me all the record I checked in a checkbox but I only need the first record checked. thank you in advance
  7. yes it is in reference to a php. What am I trying to do is to compare if the the value ckecked on checkbox are the same as the value checked on checkbox 2. If in case they are the same they should go to page1.php, And if in case they are not equal they should go to another page2.php Any help will be appreciated. thank you
  8. Hi, I am trying to count the number of checkbox which was checked in one of the field in a related record, but I am not sure what am I doing wrong because instead bring the number of that related record it is showing me the number from all the records. (i.e. if I check a,b,c in one record I would like to be showing as 3 if I check d,e,f it should showing 3 check box has been marked but right now it is showing me that 6 checkbox has been marked) What I have until now is: $AddFind = new FX($serverIP,$webCompanionPort); $AddFind->SetDBData('File.fp7','Layout'); $AddFind->AddDBParam('Survey_ID', $Survey_ID); $AddFind->AddDBParam('DetailQ1','*'); $AddFindRecord = $AddFind->FMFind(); $FoundCount = $AddFindRecord['foundCount']; ............. <?php foreach($AddFindRecord['data'] as $SearchKey =>$SearchRecord){ ?> <?php echo $DetailQ1[] = $SearchRecord['DetailQ1'][0];?> <?php }?> Any help will be appreciated. Thank you!
  9. I finally got it. What I did was: echo "$DetailQ1[$prow] ";
  10. I need some help to write an if statement. I have 2 checkboxes with same values but different field name I am wonder how do I write a if statement to compare the two checkbox if the value check are the same then I skip to another page otherwise I keep at the same page. Any help will be appreciated.
  11. Hi All, I am trying to add a text field in between each record displayed, I am wonder since is an array, how I do that <?php for($prow = 0; $prow echo "$DetailQ1[$prow] "; } ?> Any help will be appreciated. Thank you so much in advance.
  12. I have a relational database and in one of the layout I have a portal which shows a list of record, my problem is if I want to add more information to a field which is a portal to that ID number using the fx.php how would I do in order to do not delete the previous record. I am not sure what am I doing wrong. Any help will be appreciated. Here is what I have: $edit_member = new FX($serverIP,$webCompanionPort); $company_id = $_GET[company_id]; $name= $_GET[name]; $recid = $_GET[recid]; $edit_member->SetDBData(members.fp7',’web’); $edit_member->AddDBParam('-recid',$recid); $edit_member->AddDBParam('company_id',$company_id); $edit_member->AddDBParam('name',$name); $edited = $edit_member->FMEdit(); ?> <?php foreach ($edited['data'] as $recordKey =>$recordData) { ?> <?php echo $recordData['company_id'][0]; ?> <?php echo $recordData[‘name’][0]; ?> <?php } ?> Thank you
  13. Hi Everyone, I am new using the filemaker script/calculation, I don’t know to validade a field if someone click at the “CustomerNumber” field a message box should show up and asking “Are you sure you want to make changes at this record?” If they click “OK” it is allow to make change at that field and if they click “No” changes are not allowed. Any help will be appreciated and thank you in advance. Sandy
  14. The file is located in a server not in house If I am not wrong is an IIS sever. the client computer is Mac OSX 10.4.11 FileMaker 9
  15. I have a database located on my server (not filemaker server)at work. I can't open the file and it keep giving me the following error message "do not have sufficient privileges for abc.fp7" Any idea what can be wrong with the database? Any help will be appreciated and thanks in advance.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.