Search the web
Sign In
New User? Sign Up
forms-dev
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 115 - 144 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
115
Hi Manuel... Thanks 4 replying... I will wait to get your example, and hope you finish adding this feature soon... thanks a lot !!...
Kike F Becerra
qbecerra
Offline Send Email
Jun 5, 2005
7:30 pm
116
Manuel, I have the following code... INCLUDE ('includes/common.inc.php'); $form=new form_class; $form->NAME="upload_assembly_docs"; $form->METHOD="POST"; ...
operationsengineer1@...
operationsen...
Offline Send Email
Jun 13, 2005
8:56 pm
117
... I have a problem with latest version of forms.php if I set $form->encoding="Windows-1251"; JavaScript alerts show properly but the labels are gibberish, if...
pvutrix
Offline Send Email
Jun 23, 2005
5:21 pm
118
... problem ... Solved by changing the line 306 of forms.php from $encode=!strcmp(strtolower($this->encoding),"iso-8859-1"); to ...
pvutrix
Offline Send Email
Jun 23, 2005
5:25 pm
119
Hello, I thought I have answered this: ... The ACCEPT attribute is just a recommendation for the browsers to filter the list of files to list. However, most...
Manuel Lemos
mallemos
Offline Send Email
Jun 23, 2005
5:50 pm
120
Hello, ... That encoding should not affect labels. Can you give me an example of what causes a problem? -- Regards, Manuel Lemos PHP Classes - Free ready to...
Manuel Lemos
mallemos
Offline Send Email
Jun 23, 2005
5:53 pm
121
Hi Manuel (and the other members) I tried to build 2 linked selects, taking data for each select field from DB... I've a countries table: (ID,COUNTRYNAME); ...
Kike Becerra
qbecerra
Offline Send Email
Jul 12, 2005
4:59 am
122
Hello, ... This is hard to see. Please post a var_dump($countries,$states); -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in...
Manuel Lemos
mallemos
Offline Send Email
Jul 12, 2005
4:17 pm
123
Hi Manuel Here is the dump of these variables I don't understand anything of this.. array(3) { [""]=> string(18) "==SELECT COUNTRY==" ["Argentina"]=> ...
Kike Becerra
qbecerra
Offline Send Email
Jul 12, 2005
4:37 pm
124
Hello, ... The indexes of origin select must match the indexes of the target select. In the origin you have the indexes: "", "Argentina", "Chile". In the ...
Manuel Lemos
mallemos
Offline Send Email
Jul 12, 2005
5:15 pm
125
Hi Manuel Yes, I supposed that, but how to fix this in the FOR structure ? When it is single array, doing like this works: $countries[] = "==SELECT COUNTRY==";...
Kike Becerra
qbecerra
Offline Send Email
Jul 12, 2005
5:29 pm
126
Hello, ... I think the problem is that you do this: $states[][] = "==SELECT STATE=="; It should be: $states[""][""] = "==SELECT STATE=="; -- Regards, Manuel...
Manuel Lemos
mallemos
Offline Send Email
Jul 12, 2005
5:52 pm
127
Hi !!! This was great help... I put that, and Now I see the STATES FIELD !!! but: I see this: Country: ==SELECT COUNTRY== State: ==SELECT STATE== When I click...
Kike Becerra
qbecerra
Offline Send Email
Jul 12, 2005
5:59 pm
128
Hi I changed this: Before main FOR $states[""][""] = "==SELECT STATE=="; for ($i=0....){ ... $states[$datacountry['COUNTRYNAME']][""] = "==SELECT STATE=="; ...
Kike Becerra
qbecerra
Offline Send Email
Jul 12, 2005
6:12 pm
129
Manuel, i would like to use your forms class in a function designed to print out an id text box and and "edit" button. the form is actually very simple. the...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 15, 2005
6:53 pm
130
Hello, ... The problem is that you are not defining the OutputDebug function. So, either you define that function or remove the line above that assigns the...
Manuel Lemos
mallemos
Offline Send Email
Jul 15, 2005
7:40 pm
131
Manuel, i commented out the reference to OutputDebug and still received the same error. I also tried adding Function OutputDebug($error) { print "$error\n"; }...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 15, 2005
8:17 pm
132
Hello, ... I suspect that you really did not change the code that you think you changed. You see, the error points to a line that calls a function set to the ...
Manuel Lemos
mallemos
Offline Send Email
Jul 15, 2005
8:33 pm
133
Manuel, good call. this was the culprit... $form_edit =& new form_class; i should have left it without the & sign)... $form_edit =& new form_class; do you...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 15, 2005
9:37 pm
134
i forgot to add $form_edit->StartLayoutCapture(); $form_edit->EndLayoutCapture(); $form_edit->DisplayOutput(); ... <?PHP function edit_data(){ REQUIRE_ONCE...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 15, 2005
9:57 pm
135
Hello, ... No, you can use that without problems. Actually it is slightly faster. ... Used this at the end: $form_edit->DisplayOutput(); -- Regards, Manuel...
Manuel Lemos
mallemos
Offline Send Email
Jul 18, 2005
12:59 am
136
Manuel, i have the following function designed to display my edit form... function action_display_edit(){ REQUIRE_ONCE ('common/forms.php'); $form_edit = new...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 18, 2005
3:35 pm
137
the code used to display the function is below... it might be useful. echo '<span class = "note_page_header">' . $header_text.'<br />'; echo...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 18, 2005
3:37 pm
138
Manuel, i have the following code on my "main" page (mostly business logic): $form =& new form_class; // enter form variables ...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 18, 2005
8:49 pm
139
Manuel, i narrowed down the cause of my problem to the following code in my main page... $form->StartLayoutCapture(); REQUIRE_ONCE(TPL); ...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 19, 2005
6:48 pm
140
Manuel, i am trying to layout the output of two forms functions... $form_edit and $form_delete inline. if i type the following code... function hello(){ print...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 19, 2005
8:38 pm
141
it could be a css issue on my end (maybe my submit button is causing a break). i'll test it out and get back with you. i am having other layout problems with...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 19, 2005
8:57 pm
142
it appears to be a css issue on my end. all my elements are inline, now i just have to hack through my css to put spaces inbetween them. ... ...
operationsengineer1@...
operationsen...
Offline Send Email
Jul 19, 2005
10:01 pm
143
Hello, ... This does not make much sense. Your function does not return anything when you call it. So the first call will make it output before the first data...
Manuel Lemos
mallemos
Offline Send Email
Jul 20, 2005
5:40 pm
144
Hello, ... Of course, there is no magic here. If you do not set the ACTION class variable, it goes to the same page. If you set it to elsewhere, the class will...
Manuel Lemos
mallemos
Offline Send Email
Jul 20, 2005
6:02 pm
Messages 115 - 144 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help