Re: [PHP] w3c-compliant form-action parameters [solved]

2003-10-27 Thread Timo Boettcher
Hi Timo, Nachricht vom Freitag, 24. Oktober 2003, 17:58:39: I am trying to get my pages through the w3c-validator for html. It doesn't like my FORM action=mypage.php?para1=val1para2=val2 Changing to amp; got my page through the validator, but broke my app, which seems not to be

Re: [PHP] w3c-compliant form-action parameters

2003-10-26 Thread Timo Boettcher
Hi Chris, Nachricht vom Samstag, 25. Oktober 2003, 19:06:10: --- Timo Boettcher [EMAIL PROTECTED] wrote: http://shiflett.org/dev/php-general/ampersand.php can you put the source of that online, too? You can view the source in your browser to see the HTML, which is the relevant part. I

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi John, Nachricht vom Freitag, 24. Oktober 2003, 19:06:33: Timo Boettcher wrote: Hi, I am trying to get my pages through the w3c-validator for html. It doesn't like my FORM action=mypage.php?para1=val1para2=val2 Changing to amp; got my page through the validator, but broke my

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
) instead of amp; or the literal ampersand? So instead of mypage.php?para1=val1para2=val2 you would use mypage.php?para1=val1%26para2=val2. I'll try that. Cheers, Pablo -Original Message- From: Timo Boettcher [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 9:59 AM To: [EMAIL

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi Marek, Nachricht vom Samstag, 25. Oktober 2003, 13:02:06: Timo Boettcher wrote: Its not easy to get the value of a hidden field in a bookmark. Don't use amp; in bookmarks, use just . But when I say Bookmark this Page (in any browser) that gets me a bookmark on the url, and not on hidden

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi Marek, Nachricht vom Freitag, 24. Oktober 2003, 19:17:36: Whoops. The first sentense should be a question. Marek Kilimajer wrote: It breaks your server side scripts. amp; should be translated to by the browser and never get to php. Timo Boettcher wrote: Hi, I am trying to get

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi Chris, Nachricht vom Freitag, 24. Oktober 2003, 21:12:06: --- Timo Boettcher [EMAIL PROTECTED] wrote: I am trying to get my pages through the w3c-validator for html. It doesn't like my FORM action=mypage.php?para1=val1para2=val2 Changing to amp; got my page through the validator

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
? As the page is fairly complex (and that effect is experienced over three pages, that submit to each other or send header(Location:...) to another, I'll try to build an example-page to show that effect more easily... Timo Boettcher wrote: Yes. When I use form action=mypage.php?para1=val1para2

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi Chris, Nachricht vom Samstag, 25. Oktober 2003, 18:13:10: --- Marek Kilimajer [EMAIL PROTECTED] wrote: FORM action=mypage.php?para1=val1para2=val2 method=get Get variables in action URL don't work with get method, at least in Mozilla. Marek's right, and this is the case for every

Re: [PHP] w3c-compliant form-action parameters

2003-10-25 Thread Timo Boettcher
Hi Chris, Nachricht vom Samstag, 25. Oktober 2003, 18:28:27: --- Timo Boettcher [EMAIL PROTECTED] wrote: I find that *very* hard to believe. I'm not aware of any browser that mishandles HTML entities. Basically, when you say this: action=/mypage.php?para1=val1amp;para2=val2 Your

[PHP] w3c-compliant form-action parameters

2003-10-24 Thread Timo Boettcher
Hi, I am trying to get my pages through the w3c-validator for html. It doesn't like my FORM action=mypage.php?para1=val1para2=val2 Changing to amp; got my page through the validator, but broke my app, which seems not to be getting any parameters over URL anymore. How can I fix that?

Re: [PHP] XML Parser misbehaves with amp;

2003-08-19 Thread Timo Boettcher
Hi Jeff, Nachricht vom Montag, 18. August 2003, 18:14:37: I've come across this frustrating behavior with the XML parser when it reads an escaped ampersand (amp;) If the xml being evaluated is: COLORSBlue, Green amp; Red/COLORS it calls the character data handler 3 times: the first

Re: [PHP] REPLY NEEDED

2003-04-04 Thread Timo Boettcher
Hi, Message of Friday, 4th April 2003, 12:28:44: PK STRICTLY CONFIDENTIAL PK WE ARE MEMBERS OF A SPECIAL COMMITTEE FOR BUDGET AND PLANNING OF PK THE NIGERIAN NATIONAL PETROLEUM CORPORATION (NNPC). THIS COMMITTEE PK IS PRINCIPALLY CONCERNED WITH CONTRACT AWARDS AND APPROVAL. PK

Re[2]: [PHP] Submit Image Button

2003-04-04 Thread Timo Boettcher
Hi -{, Nachricht vom Donnerstag, 3. April 2003, 16:27:56: If(!$_GET['sub_x'] !$_GET['sub_y']) { // display form } else { // it was submitted Use isset to test the variables... it is cleaner code. PHP will complain if you do not. (Except of course if you silence it and turn

Re[2]: [PHP] REPLY NEEDED

2003-04-04 Thread Timo Boettcher
Hi David, Nachricht vom Freitag, 4. April 2003, 14:52:14: On Friday 04 April 2003 03:56 am, Timo Boettcher wrote: Hi, Message of Friday, 4th April 2003, 12:28:44: Apart from this being as Off-topic as I have ever seen, I think we should help him: So that he doesn't have to spend his

[PHP] Err:Uninitialized string offset: 0 when doing count on multidim array

2003-04-03 Thread Timo Boettcher
Hi! I have an multidimensional array with contents like: $myarr[url][]=http://www.example.com;; $myarr[img][]=http://www.example.com/test.gif;; $myarr[text][]=example.com; I want to display all entries like: for ($i=0; $icount($myarr[url]); $i++) {