this, and above all, my apologies
to PHP!
""Albert"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> On 12/22/05, Ron Rudman <[EMAIL PROTECTED]> wrote:
>>
>>>I've got this down to a bare bones test but am still stumped.
rames are held back. Seems like the
request is logged when it completes, so the logging process can't show us
whether the client held back frame 3 or frame 3 was put on hold by the
server.
-Original Message-
From: Jochem Maas [mailto:[EMAIL PROTECTED]
Sent: Friday, December 23, 2005 6:21
I've got this down to a bare bones test but am still stumped. Can anyone
explain why I get the behavior I do?
I have a frameset with 3 frames:
testing
test1.php and test2.php are both simply:
test3.php is simply:
When I invoke the main frameset, the output from tes
s because then the code in foo
might conflict with the context surrounding the include. I was hoping for a
simpler solution, but I might be able to isolate the include in a function.
"Chris Shiflett" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> --- Ron Rudman
There are already plenty of echo statements in foo! They DO show up when I
run php foo. It's when I try to use system("php foo") that I don't get
anything.
"Jay Blanchard" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
[snip]
I have a php cli that creates a file. It works fine whe
I have a php cli that creates a file. It works fine when I execute it from
the Linux command line as "php foo > bar". I'm trying to also execute this
by clicking a form button on a web page via "system('php foo > bar')". I
can see that the file bar gets created but it's always empty. I've trie
I believe you can also prevent the header error by using ob_start();
"Jean-Louis Letortorec" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> To work around that "headers already sent" problem, I use:
>
> if ($condition == true) { echo
> "location.href=('http://...');"; }
>
> That wor
I think you mean:
$example_string = '?action=kick&item=me';
"Jose" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
I might be wrong here, but with the code below I would expect $_GET to be
filled and the script to output the next line:
// expected output:
//
// array(2) { ["acti
I am using MySQL via PEAR:DB like this (these statements are executed for
each SQL statement)::
$dbc = DB::connect( $dsn );
$cmd = strtoupper(strtok( $str, " " ));
if ( $cmd == "SELECT" || $cmd == "SHOW" )
$aRows = ( $queryparms == "" ) ? $dbc->getAll( $str ) : $dbc->getAll(
$str, $queryparm
Try:
parse_str( $_SERVER['QUERY_STRING']);
"Stephen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi
>
> I have just installed PHP 4 and Apache 2 but when I pass a variable in a
url
> eg ?id=1
> I can't get the variable value by $id, I have to use $_GET['id'] or
> $_POST['id']
>
>
10 matches
Mail list logo