Re: [PHP-WIN] ImageCreate()

2001-06-22 Thread Arash Dejkam
Hi, I'm not using this as commercial, just because I use DreamWeaver, photoshop,... I use W2K to build my site and I installed apache and PHP to test my pages but my server is linux. ""Josh Seward"" <[EMAIL PROTECTED]> wrote in message 001d01c0fb3b$aefc33a0$fbaf1f18@Athlon">news:001d01c0fb3b$aefc

[PHP-WIN] Apache/PHP/Mysql win98SE - Connection Dropping

2001-06-22 Thread Mark Edwards
Hi. I am using my win98 machine as a dev box for a web/php application. I am doing fairly frequent queries to the mysql instance, and every now and again the connection between php and mysql drops and I can't reinstate it without bouncing apache. Almost seems like there's a leak somewhere and all

php-windows Digest 22 Jun 2001 23:35:50 -0000 Issue 623

2001-06-22 Thread php-windows-digest-help
php-windows Digest 22 Jun 2001 23:35:50 - Issue 623 Topics (messages 7981 through 7990): Starting Point and Online Tutorials 7981 by: Frank J. Schmuck 7986 by: Flint Doungchak using the PHP4 mail() function in (Newbie) 7982 by: Peter Haywood 7989 by: Michae

Re: [PHP-WIN] using the PHP4 mail() function in (Newbie)

2001-06-22 Thread Michael Kelley
You need to change SMTP = localhost ; for Win32 only to SMTP = MyMailhost.domain.edu ; for Win32 only (MyMailHost being your mail service's server -> pop3.hotmail.com) If you don't have that then you may need to install a mail service of your own ... If you need to do that research the archieves

Re: [PHP-WIN] Need help with Cookies

2001-06-22 Thread Neuro Mancer
Anybody know if there is a fix in the works for this or are they just blaming IIS/MS and recommending a move to Apache? Neuro. ""Ivan Milanez Castellanos"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Thanx Brian but I allready resolved the problem by switch

[PHP-WIN] Problems with Mysql Tables!

2001-06-22 Thread Arjun Saha
Hey Guys, I'm running Apache/PHP/Mysql on Win2k Pro. This is an error that has happened first time with me..and it's so scary I just had to mail. I access all my mysql from Php and often refer to the tables from the command prompt. All of a sudden I am unable to read from some Mysql tables

RE: [PHP-WIN] Starting Point and Online Tutorials

2001-06-22 Thread Flint Doungchak
Hey Schmuck, Just kidding. Bet you haven't heard that one before. LOL. :p Try http://www.php.net/links.php there's a whole list of resources for tutorials and code examples there. The PHP FAQ also has some comparison between perl and asp, etc. That's at http://www.php.net/FAQ.php -Flint -O

[PHP-WIN] PHP Nuke question

2001-06-22 Thread Clint Tredway
Does anyone have tips for getting PHP-Nuke running on windows? Thanks! -- Clint Tredway www.factorxsoftware.com -- -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP-WIN] ImageCreate()

2001-06-22 Thread Josh Seward
You need to have the GDlib installed. Here is a link that will set up Apache, Mysql, php, and the GDlib on your win200 system. This is not ment for actally hosting a commercial site yet. I wouldn't use it for that wihtout some tweaking. Link: http://www.firepages.com.au/yak2.htm?this=6&that=3 --

Re: [PHP-WIN] Get the contents of the textarea "as is"

2001-06-22 Thread Ben Gillam
I used the thing from phpbuilder worked a treat, many thanks ""Ben Gillam"" <[EMAIL PROTECTED]> wrote in message 9gt53d$lfh$[EMAIL PROTECTED]">news:9gt53d$lfh$[EMAIL PROTECTED]... > For example, if someone puts the following into a textbox.. > > "Hi my name is bob smith > > and im talking to you

[PHP-WIN] using the PHP4 mail() function in (Newbie)

2001-06-22 Thread Peter Haywood
Any advice on this would be much appreciated: I am trying to send a simple email. in the php file, i have entered: when i load the page, i get the following: Warning: Server Error in C:\inetpub\wwwroot/php/tests/test.php on line 2 test.php being the file containing the PHP mail code this is

[PHP-WIN] Starting Point and Online Tutorials

2001-06-22 Thread Frank J. Schmuck
Can someone provide a good starting point and possible on-line tutorials for using PHP, MySQL and CGI on a Win32 platform (Win32). I already have some degree of experience using Perl, MySQL and CGI and am evaluating the benefits of PHP in this area. Thanks Frank -- PHP Windows Mailing List (

php-windows Digest 22 Jun 2001 11:32:57 -0000 Issue 622

2001-06-22 Thread php-windows-digest-help
php-windows Digest 22 Jun 2001 11:32:57 - Issue 622 Topics (messages 7967 through 7980): Why php4isapi.dll doesn't load as ISAPI filter ??? 7967 by: Ziggi 7975 by: Flint Doungchak Get the contents of the textarea "as is" 7968 by: Ben Gillam 7976 by: Flint Do

[PHP-WIN] ImageCreate()

2001-06-22 Thread Arash Dejkam
Hi, I want to use image functions in PHP but each time I use functions like ImageCreate() or ImageCreateFromJPEG() ... I receive an error saying undefined function, I'm using PHP version 4.0.5 on Apache and I use W2K. what's the problem ? Thanks Arash Dejkam -- PHP Windows Mailing List (htt

Re: [PHP-WIN] Get the contents of the textarea "as is"

2001-06-22 Thread Paul Meagher
This might work. Untested. $tokens = explode(" ", $message); $num_tokens = count($tokens); for ($i = 0; $i < $num_tokens; $i++) { $new_message .= $token . " "; } $new_message = rtrim($new_message); echo $new_message; Regards, Paul Meagher - Original Message - From: "Ben Gillam"