Re: [PHP-WIN] PHP Editor

2003-04-03 Thread parus
you can try CONTEXT (in windos) in below address and it's free http://www.fixedsys.com/context/ "Nick H. -- Level II Technical Support" <[EMAIL PROTECTED]> ???:[EMAIL PROTECTED] > vi? notepad? > > > > Regards, > Nick H. > [EMAIL PROTECTED] > > > - Original Message - > From: "Chris a

[PHP-WIN] problem to get variable from html

2003-04-03 Thread parus
i just download the "PHP 4.3.1 installer [1,028Kb] - 17 February 2003" but after install i found a rear situtation that i can't get variable from html form. php will return "Undefined variable" but in phpinfo(), i can see _POST[] was exist and have the value i want. do any one can tell me what's w

[PHP-WIN] Web services

2003-04-03 Thread Mihail Bota
Hello, I konw this subject was discussed extensively by the members of this list; I became interested in it simply because this is one of my new tasks. I have to enable the site as a server for web service. What I have by now is a MySql database and a PHP web interface which manipulates data from

Re: [PHP-WIN] PHP Editor

2003-04-03 Thread Nick H. -- Level II Technical Support
vi? notepad? Regards, Nick H. [EMAIL PROTECTED] - Original Message - From: "Chris and Trish Kaelin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 03, 2003 10:11 PM Subject: [PHP-WIN] PHP Editor > Does anyone have any recomendations for a good inexpensive / free e

[PHP-WIN] PHP Editor

2003-04-03 Thread Chris and Trish Kaelin
Does anyone have any recomendations for a good inexpensive / free editor for PHP files? Chris Kaelin _ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus -- PHP Windows Mailing List

[PHP-WIN] Re: Simple Answer, but I can't see it....

2003-04-03 Thread John
Assuming you have some form info inside those tags, here is what I use: blah blah blah <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, I have a login HTML form within a PHP page that I want to call itself > when submitted. But when I press the submit button within the form,

[PHP-WIN] Re: Installing PHP with Apache on Win ME

2003-04-03 Thread John
Disable ZLIB compression in PHP.INI "Nick Scott" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have gone through the steps and when I open a php page it wants to > download the page. > > What do I need to do? > > -- PHP Windows Mailing List (http://www.php.net/) To unsubscri

php-windows Digest 4 Apr 2003 01:14:09 -0000 Issue 1666

2003-04-03 Thread php-windows-digest-help
php-windows Digest 4 Apr 2003 01:14:09 - Issue 1666 Topics (messages 19268 through 19279): Re: Help with gd 19268 by: Neil Smith PHP probs with XML docs 19269 by: trystano.aol.com Better Error Trapping! 19270 by: Matt Babineau 19272 by: Stephen Re: unlink?

[PHP-WIN] Re: Global Variable Issues

2003-04-03 Thread John
Try setting this variable as a session. Here is a piece of code used once a user has been validated against a MySQL dbase. ($uname was assigned from the login.html page) Then, on each page that requires a preson to be logged in to access, this goes at the top: NORMAL PAGE CODE HERE //allows m

[PHP-WIN] for loop help!

2003-04-03 Thread Kieran Hall
I want to display information from my database in two columns. I run into a problem when there are three records. Another table data cell is produced containing template material. Does anyone know a quick solution to this problem? Code below: $cols = 2; $cell_count = 0; if($numrows < $cols){

RE: [PHP-WIN] session ids

2003-04-03 Thread Charles P. Killmer
PHP will use the session id that your browser specifies. If you have php setup to store session id in cookies, every time you refresh the page your browser is telling php what session id to use. Then when you close your browser, your cookies may be getting deleted. Charles Killmer -Original

[PHP-WIN] session ids

2003-04-03 Thread Iggy
I have been having a huge problem with session IDs for a while now and havn't been able to find a solution. a simple code like this: session_start(); echo session_id(); session_unset(); session_destroy(); run on a single php page will always give me the same id no matter how many times I refresh

Re: [PHP-WIN] fopen permission denied

2003-04-03 Thread Nick H. -- Level II Technical Support
You need to make sure that IUSR has permissions on that file. When you call from command line it's using your credentials. When it's from a browser, it's IUSR_MACHINE Regards, Nick H. [EMAIL PROTECTED] - Original Message - From: "Walter Gyr" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

[PHP-WIN] fopen permission denied

2003-04-03 Thread Walter Gyr
Hi All I have update to PHP 4.3.1 W2000, apache 2.0.14 MYSQL 4.0.12 . In a php script $fp = fopen("i:\\data\\import.txt", "r"); " Cannot open permission denied." i: is mapped network drive When i call the script from command line it works. Can anybody help ? Walter -- PHP Windows M

[PHP-WIN] PHP with PDFlib installation on Windows

2003-04-03 Thread Bill Hudspeth
Hello, I am having problems getting the PDF extension to work with PHP on Windows. I am running PHP 4.2.3 on Windows NT 4.0 using IIS as my internet server. I have enabled the PDF extension in the php.ini file, with no apparent success. When I try to load the page, I get an empty screen (i.e., n

Re: [PHP-WIN] Better Error Trapping!

2003-04-03 Thread Stephen
My solution to the problem was to create an error reporting function. If something goes wrong during key parts of the code (eg database erorr, mail sending error, file reading error etc) then the error function is called. My error reporting function attempts to send me an email, and if the email is

[PHP-WIN] Re: unlink?

2003-04-03 Thread Norbert Grüttner
Paul, you have to make sure, that the file you are trying to delete via unlink is not currently in use by you application: Example which WILL NOT WORK $array = File("filename"); Unlink ("filename"); Another one NOT WORKING $fh = fopen("filename"); $data = fgets($fh); unlink("filename""); B

[PHP-WIN] Better Error Trapping!

2003-04-03 Thread Matt Babineau
Hi All- I have searched for a while and cannot seem to find a quality error trapping script!!! Here is the situation, about a week ago one of the sites I built (which is hosted on a shared server @ an ISP) went down. It went down because the database server got moved. If I had been notified of

[PHP-WIN] PHP probs with XML docs

2003-04-03 Thread trystano
Uhm, reffering to my post yesterday about IE try to open my PHP document as an XML docuemnt I think I have located the problem. If I don't make the PHP document XHTML compliant, then the PHP document loads into IE ok. If I make the PHP document XHTML compliant, and build up a query string using

Re: [PHP-WIN] Help with gd

2003-04-03 Thread Neil Smith
Hi Achilles - try something like this (you will have to read the exact syntax in the manual cause its quite involved but ovious if you're logical about it) : $imtext=ImageCreate (100,22); // Make new, blank image 100x22px for text $black = ImageColorAllocate ($imtext, 100, 100, 100); // Set bl

php-windows Digest 3 Apr 2003 12:37:37 -0000 Issue 1665

2003-04-03 Thread php-windows-digest-help
php-windows Digest 3 Apr 2003 12:37:37 - Issue 1665 Topics (messages 19242 through 19267): Re: Simple Answer, but I can't see it 19242 by: Uttam Re: I really don't understand this? 19243 by: Jill.Ramonsky.Aculab.com 19244 by: ODCS 19246 by: Svensson, B.A.

Re: [PHP-WIN] Output to Excel File

2003-04-03 Thread Radovan Radic
Hi, I am off-topic here, but are there any ways to load word document file into php, and do something with it (convert to html, put into db etc.) Thx, Radovan "Erwan Pianezza" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > http://www.web-aware.com/biff/ > > PHP to Excel, aka BiffW