[PHP] iconv - bad encoding

2009-10-01 Thread Jarosek
Hello I noticed a problem using iconv, but investigation showed, that this is not exectly the iconv itself, but something like php encoding. From the beginning: a hava an incoming variable $text; it has some Polish diactics 'strona główna'. I expect to remove diactics : 'strona glowna'. So I u

Re: [PHP] Curl output

2009-10-01 Thread Jim Lucas
gbhumphrey wrote: Hi, I am doing a basical curl call and can get the webpage I want. However when it prints to the screen, it only prints the text, not css or any javascript calls that run on page load. Is there a way to make it do that? thanks using a basic curl call $curl_handle=curl_init(); c

Re: [PHP] Parse Question Using list()

2009-10-01 Thread Jim Lucas
c...@hosting4days.com wrote: On Oct 1, 2009, at 5:02 PM, Ben Dunlap wrote: You could tackle this in a couple of different ways. Either split your string into an array first: $line = fgets($handle); $columns = explode(",", trim($line)); Thanks Ben - the explode() command worked great! Use

Re: [PHP] Self-Process php forms or not?

2009-10-01 Thread Manuel Lemos
Hello, on 10/01/2009 09:00 AM MEM said the following: > One last question about this: > > I've done a self submit form, after hearing all the advantages expressed > here. > But how could we relate, without using javascript, a self submit form with a > "success page" or a "confirmation page" that

Re: [PHP] Curl output

2009-10-01 Thread Paul M Foster
On Thu, Oct 01, 2009 at 04:37:14PM -0700, gbhumphrey wrote: > > Hi, I am doing a basical curl call and can get the webpage I want. However > when it prints to the screen, it only prints the text, not css or any > javascript calls that run on page load. > Is there a way to make it do that? > > th

Re: [PHP] Parse Question Using list()

2009-10-01 Thread c...@hosting4days.com
On Oct 1, 2009, at 5:02 PM, Ben Dunlap wrote: You could tackle this in a couple of different ways. Either split your string into an array first: $line = fgets($handle); $columns = explode(",", trim($line)); Thanks Ben - the explode() command worked great! - Now a bit of another pro

RE: [PHP] Self-Process php forms or not?

2009-10-01 Thread MEM
Thanks a lot to all, I will see what best fits my limited knowledge, and choose the possible option. Regards, Márcio > -Original Message- > From: Tom Worster [mailto:f...@thefsb.org] > Sent: quinta-feira, 1 de Outubro de 2009 20:11 > To: tedd; 'PHP-General List' > Subject: Re: [PHP] Self

Re: [PHP] Parse Question Using list()

2009-10-01 Thread Ben Dunlap
> $line = fgets($handle); > > list($col1, $col2, $col3) = $line; [8<] > echo "c1 is $col1 and c2 is $col2 and c3 is $col3".''; // this shows > just 1st char of each field That's odd, I would have expected $col1, $col2, and $col3 to be NULL. That's what I get when I try to assign a string to list()

[PHP] Curl output

2009-10-01 Thread gbhumphrey
Hi, I am doing a basical curl call and can get the webpage I want. However when it prints to the screen, it only prints the text, not css or any javascript calls that run on page load. Is there a way to make it do that? thanks using a basic curl call $curl_handle=curl_init(); curl_setopt($curl_ha

[PHP] Parse Question Using list()

2009-10-01 Thread c...@hosting4days.com
newbie import csv question file is like: stuff1,stuff2,stuff3 stuff1,stuff2,stuff3 stuff1,stuff2,stuff3 stuff1,stuff2,stuff3 etc. Problem: when I try to parse out the 3 fields and display them using list() it just gets just 1st char of each field ... Q: How do I get it to set $col1 - 2 & $c

[PHP] Incorrect _SERVER['SERVER_PORT'] returned??

2009-10-01 Thread Bob Schell
Hello. I have configured my RHEL5 Apache system with SSL. I verified that SSL was installed correctly and accessing the site via SSL works as expected. The problem I am having is my PHP code is pulling the $_SERVER['SERVER_PORT'] variable and this is coming back as 80 rather than 443. Here is m

Re: [PHP] POST without POSTing

2009-10-01 Thread Ben Dunlap
> to make sure the user has properly filled out this form. So I have to > validate it. That's done in the background on the server, naturally. But > once the validating is done, it's time to send the user off to the > secure site with a payload of POST variables. At that point, the user > will ente

Re: [PHP] POST without POSTing

2009-10-01 Thread Paul M Foster
On Thu, Oct 01, 2009 at 04:23:46PM -0400, Daniel Brown wrote: > On Thu, Oct 1, 2009 at 16:14, Paul M Foster wrote: > > > > Okay, I've figured out how to shove the data through cURL to the > > receiving URL, but then it occurred to me that the client browser must > > go there *as well*. > > > > Wi

[PHP] Re: POST without POSTing

2009-10-01 Thread Jeff Brown
Paul M Foster wrote: I'm sure this has been covered before, but I'm not even sure how to search in the archives for it. I have a form that collects certain info via POST. It is re-entrant, so when the user hits the "submit" button, it checks the input and does whatever sanity checks it needs to.

Re: [PHP] PHP/MySQL Superstars

2009-10-01 Thread Robert Cummings
I'm a superstar... send me a check for $500,000 and I'll fly on over. Or did you completely misuse the word "superstar"? Cheers, Rob. Jerome Botbol wrote: Hi All, We require a PHP / MySQL superstar to work in-house at our offices near Edgware, London for 3 months on a ground breaking new w

[PHP] Re: PHP/MySQL Superstars

2009-10-01 Thread Manuel Lemos
Hello, on 10/01/2009 10:09 AM Jerome Botbol said the following: > Hi All, > > We require a PHP / MySQL superstar to work in-house at our offices near > Edgware, London for 3 months on a ground breaking new web 2.0 project > which involves a variety of exciting new technologies. You will need at >

Re: [PHP] POST without POSTing

2009-10-01 Thread Daniel Brown
On Thu, Oct 1, 2009 at 16:14, Paul M Foster wrote: > > Okay, I've figured out how to shove the data through cURL to the > receiving URL, but then it occurred to me that the client browser must > go there *as well*. > > Will curl_exec() do that on its own, or is there a parameter I need to > feed i

Re: [PHP] POST without POSTing

2009-10-01 Thread Paul M Foster
On Wed, Sep 30, 2009 at 11:36:55PM -0400, Daniel Brown wrote: > On Wed, Sep 30, 2009 at 23:29, Paul M Foster wrote: > > > > I'm not sure how to do this. Please no exotic external libraries my > > shared hosting provider doesn't include. RTFM will be fine; just tell me > > which Fine Manual to Rea

Re: [PHP] Self-Process php forms or not?

2009-10-01 Thread Tom Worster
On 10/1/09 10:13 AM, "tedd" wrote: > At 1:00 PM +0100 10/1/09, MEM wrote: >> One last question about this: >> >> I've done a self submit form, after hearing all the advantages expressed >> here. >> But how could we relate, without using javascript, a self submit form with a >> "success page" or

Re: [PHP] POST without POSTing

2009-10-01 Thread Kirk . Johnson
Paul M Foster wrote on 09/30/2009 09:29:17 PM: > [PHP] POST without POSTing > > Paul M Foster > > to: > > php-general > > 09/30/2009 09:31 PM > > I have a form that collects certain info via POST. It is re-entrant, so > when the user hits the "submit" button, it checks the input and does >

Re: [PHP] Self-Process php forms or not?

2009-10-01 Thread Ashley Sheridan
On Thu, 2009-10-01 at 09:30 -0400, Tom Worster wrote: > On 10/1/09 8:00 AM, "MEM" wrote: > > > One last question about this: > > > > I've done a self submit form, after hearing all the advantages expressed > > here. > > But how could we relate, without using javascript, a self submit form with

RE: [PHP] Self-Process php forms or not?

2009-10-01 Thread tedd
At 1:00 PM +0100 10/1/09, MEM wrote: One last question about this: I've done a self submit form, after hearing all the advantages expressed here. But how could we relate, without using javascript, a self submit form with a "success page" or a "confirmation page" that doesn't show the form? Can

Re: [PHP] Self-Process php forms or not?

2009-10-01 Thread Tommy Pham
Original Message > From: Mert Oztekin > To: MEM ; Bob McConnell ; PHP-General List > > Sent: Thursday, October 1, 2009 5:16:40 AM > Subject: RE: [PHP] Self-Process php forms or not? > > May be it is best time to for you to start using Zend Framework -> Zend_Form > > -Original Mes

Re: [PHP] POST without POSTing

2009-10-01 Thread Tommy Pham
- Original Message > From: Daniel Brown > To: Paul M Foster > Cc: php-general@lists.php.net > Sent: Wednesday, September 30, 2009 9:58:18 PM > Subject: Re: [PHP] POST without POSTing > > On Thu, Oct 1, 2009 at 00:41, Paul M Foster wrote: > > > > fsockopen() appears to be part of the sta

RE: [PHP] Self-Process php forms or not?

2009-10-01 Thread Jason
I've used the form page with a the following code (at the bottom - but before any output is done) to redirect to a thank you page: if ($submittedcorrectly) { header("Location: thankyou.htm"); exit(); } HTH J -Original Message- From: MEM [mailto:tal...@gmail.com] Sent: 01 October 20

Re: [PHP] Self-Process php forms or not?

2009-10-01 Thread Tom Worster
On 10/1/09 8:00 AM, "MEM" wrote: > One last question about this: > > I've done a self submit form, after hearing all the advantages expressed > here. > But how could we relate, without using javascript, a self submit form with a > "success page" or a "confirmation page" that doesn't show the fo

[PHP] PHP/MySQL Superstars

2009-10-01 Thread Jerome Botbol
Hi All, We require a PHP / MySQL superstar to work in-house at our offices near Edgware, London for 3 months on a ground breaking new web 2.0 project which involves a variety of exciting new technologies. You will need at least 2 years proven experience on commercial projects. Relevant experience

RE: [PHP] Self-Process php forms or not?

2009-10-01 Thread Mert Oztekin
May be it is best time to for you to start using Zend Framework -> Zend_Form -Original Message- From: MEM [mailto:tal...@gmail.com] Sent: Thursday, October 01, 2009 3:01 PM To: 'Bob McConnell'; 'PHP-General List' Subject: RE: [PHP] Self-Process php forms or not? One last question about th

RE: [PHP] Self-Process php forms or not?

2009-10-01 Thread MEM
One last question about this: I've done a self submit form, after hearing all the advantages expressed here. But how could we relate, without using javascript, a self submit form with a "success page" or a "confirmation page" that doesn't show the form? Can please someone throw me some infos abo