[PHP-WIN] Re: Run string as PHP code

2002-02-20 Thread David
I think you mean eval(). http://www.php.net/eval Regards, David -- --- WarpedWeb.Net: http://www.warpedweb.net/ "Sanduhr" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > http://www.php.net/manual/en/function.exec.php > > or put it between ``-quotes. > > "Nic

[PHP-WIN] Re: Run string as PHP code

2002-02-20 Thread Sanduhr
http://www.php.net/manual/en/function.exec.php or put it between ``-quotes. "Nicole Amashta" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : Can someone tell me the function to run a string as php code? : : I know there is a function, but I can't for the lif

[PHP-WIN] Re: Passing and array in a query string

2002-02-20 Thread Sanduhr
try serialize() and unserialize() "Quincy" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : I want to find out if it is possible to pass an entire array via a query : string using php? : : -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, v

[PHP-WIN] Passing and array in a query string

2002-02-20 Thread quincy
I want to find out if it is possible to pass an entire array via a query string using php? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Writing text to files on Windows

2002-02-20 Thread alain samoun
Works on win98. Try your script without flock() - maybe a problem with ur win server. A+ Alain -Original Message- From: Robert Abbate [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 5:52 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Writing text to files on Windows I seem t

Re: [PHP-WIN] Writing text to files on Windows

2002-02-20 Thread Rubén Gutiérrez
On Wed, 20 Feb 2002 17:51:30 -0800 "Robert Abbate" <[EMAIL PROTECTED]> wrote: > I seem to be having trouble being able to *write* text to a file within a > Windows server. Does anyone know what needs to be done to get this to work? > I've tried making sure that the direcories are set to the maxi

[PHP-WIN] FindWindow() in C# called by PHP

2002-02-20 Thread Devon Knowles
Has anyone been able to get C# code working that is called from PHP and uses the FindWindow() ATL call? I have a COM module that works outside of the PHP environment fine, but when called from a PHP script, FindWindow() always returns 0. Thanks in advance. - Devon Knowles -- PHP Windows Mail

[PHP-WIN] Running Windows full binary distribution

2002-02-20 Thread Tom Belich
I've installed the windows installer version of php on a NT server. I've also installed the windows binary on my Windows 2000 pro workstation. Everything works fine on the CGI-Windows installer version on the server, but I can't get the same applications to run from my Win2KPro workstation (I get

php-windows Digest 20 Feb 2002 23:54:37 -0000 Issue 1010

2002-02-20 Thread php-windows-digest-help
php-windows Digest 20 Feb 2002 23:54:37 - Issue 1010 Topics (messages 12159 through 12166): Re: updating db 12159 by: Collins, Robert Re: WinXP Error Passing Variables (and creating) 12160 by: Nicole Amashta 12161 by: Nicole Amashta 12165 by: Chris Earle Re

[PHP-WIN] Writing text to files on Windows

2002-02-20 Thread Robert Abbate
I seem to be having trouble being able to *write* text to a file within a Windows server. Does anyone know what needs to be done to get this to work? I've tried making sure that the direcories are set to the maximum permissions (read/write/execute) to anyone. Still doesn't work. I'm trying this:

Re: [PHP-WIN] Re: WinXP Error Passing Variables (and creating)

2002-02-20 Thread Chris Earle
Yours did not work as it either. Thanks for the attempt. Although a few things about your code that I thought my be the problem: - You had " wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Try this instead. I couldn't get Devon's to work on my system either, but > this one does.

RE: [PHP-WIN] Run string as PHP code

2002-02-20 Thread Collins, Robert
eval() -Original Message- From: Nicole Amashta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 2:47 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Run string as PHP code Can someone tell me the function to run a string as php code? I know there is a function, but I can't for

[PHP-WIN] Run string as PHP code

2002-02-20 Thread Nicole Amashta
Can someone tell me the function to run a string as php code? I know there is a function, but I can't for the life of me remember what it is, so i can't search for it on php.net. Anyone know offhand? TIA! -- Nicole Amashta Web Applications Developer www.aeontrek.com -- PHP Windows Mailing

RE: [PHP-WIN] Re: calling PHP code on a different website

2002-02-20 Thread Alek Andreev
You may want to do some XML export and import. That will give you a widely compatible data exchange method. Later, you can use that XML feed to provide syndication contents, etc. (Think about the future!) -Original Message- From: Ridai Govinda Pombo [mailto:[EMAIL PROTECTED]] Sent: Tues

[PHP-WIN] Re: WinXP Error Passing Variables (and creating)

2002-02-20 Thread Nicole Amashta
That won't work because you have to actually send the form before using the variable $username. Check your php.ini and make sure you have your error_reporting line set like this: error_reporting = E_ALL & ~E_NOTICE hope that helps, Nicole Amashta www.aeontrek.com "Chris" <[EMAIL PROTECTED]>

[PHP-WIN] Re: WinXP Error Passing Variables (and creating)

2002-02-20 Thread Nicole Amashta
Also, read this (which is taken from the php.ini): E_NOTICE - run-time notices (these are warnings which often result ; from a bug in your code, but it's possible that it was ; intentional (e.g., using an uninitialized variable and ;

RE: [PHP-WIN] updating db

2002-02-20 Thread Collins, Robert
You could try something like this: "; echo "ID : "; echo "Name : "; echo ""; echo ""; } ?> -Original Message- From: Sandeep Murphy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 5:48 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] updating d

php-windows Digest 20 Feb 2002 11:49:35 -0000 Issue 1009

2002-02-20 Thread php-windows-digest-help
php-windows Digest 20 Feb 2002 11:49:35 - Issue 1009 Topics (messages 12153 through 12158): WinXP Error Passing Variables (and creating) 12153 by: Chris 12154 by: Devon Knowles 12155 by: Chris 12156 by: Ross Fleming 12157 by: David Redmond updating d

[PHP-WIN] updating db

2002-02-20 Thread Sandeep Murphy
Hi, Can anyone tell me how I can update a column in MySQL based on form input TIA, sands -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php