Hi Richard,
thaks for clarifying that to me. The only problem now is that I get a
timeout in my script because fopen() failed to open the stream.
I have checked that the address is okay. I manage to open another
site, but not this file which is on my ISP. Actually, manual telnet to
port 80 of m
Thanks Richard,
> BS> My php program uses sends send some information to a .cgi file
> BS> possibly on a different site. That file uses GET to fetch the
> BS> information and prints it out as it would if accessed through a
> BS> browser. But instead I want my php program to intercept this and par
Hi,
In my php code, how can I fetch the input from another website and
parse its output without sending it to the client?
What I want to do is this:
My php program uses sends send some information to a .cgi file
possibly on a different site. That file uses GET to fetch the
information and print
Hi,
I'm trying to send my session ID using POST/GET auto-inserted by PHP.
This works like a charm in a .php file. But in a .cgi file, a new
PHPSSID appears in the Address field of my browser every time I follow
the link from the file to itself.
What may be causing this? I have had some big prob
> > I have a problem setting my headers right with php running as
> > .cgi. I have to specify a Content-type for the cgi file to work.
> > But how should I do both that and start a session?
>
> Try using header() instead of print to set Content-Type.
>
> Hope that helps.
Thanks Chris. I tried t
> >I have a problem setting my headers right with php running as .cgi. I
> >have to specify a Content-type for the cgi file to work. But how
> >should I do both that and start a session?
> >
> >I have a few options:
> >
> >#! /usr/local/bin/php
> > >session_start();
> >print 'Content-type:
Hi there,
I have a problem setting my headers right with php running as .cgi. I
have to specify a Content-type for the cgi file to work. But how
should I do both that and start a session?
I have a few options:
#! /usr/local/bin/php
' . "\n";
print '' . "\n";
if (!isset($_SESSION['count
Cheers Chris
> I will try to explain using your code:
>
> > Here's test3.cgi:
> > ==
> > #! /usr/local/bin/php
> > > print 'Content-type: text/html' . "\n\n";
>
> When you are running as a CGI, you can set the Content-Type header in this
> > Do you have any ideas what I should do to make both .php and .cgi
> > versions work?
>
> > Here's test3.cgi:
> > ==
> > #! /usr/local/bin/php
> > > print 'Content-type: text/html' . "\n\n";
> > session_start();
>
> Have you tried p
I have a problem with html headers using sessions. I guess it has to
do with the Content-type line. My ISP uses PHP 4.3.4 with
register_globals = On (although I want this to work with Off too).
My program (test3.cgi, test3.php) simply logs the number of times I
have accessed a web site. As a php
Hi all,
I'm cooking tothether a tiny php html editor right now, (textarea kind
of thing). To treat the text properly I need to encode characters like
'"', '<', '>', and friends into something that doesn't confuse the
browser.
I got it to work with regexps, you can see a part of the decoder
belo
Is anyone of you aware of a modulo eleven function that is used to
calculate the checksum of a creditcard number?
I have a pretty crude code listing from a book, but what I look for is
a function that can append the checksum digit to a number.
I have the spec for the algorithm behind the check
Hi All,
When does session_start() have to be called? I have the following
setting:
A bunch of php pages are placed in a frameset. If someone tries to
access one of these pages without the session-id cookie being set, the
page calls a reloading of the frameset. The frameset page itself is
the fi
I'm starting work on regular expressions in PHP these days. Just
thought I'd share my test code for others out there who are fresh
starters with the language and regular expressions.
file parser.php:
\n";
print "\n";
print "Testing regular expressions\n";
print "\n";
print "\n";
14 matches
Mail list logo