Re: [PHP-WIN] Newbie:Backend scripts

2001-07-05 Thread DoStuff Postmaster
Yes, on a Unix machine you can run a cron job (not sure how to do that since I don't use Unix, maybe someone can fill him in) or on windows 2000 you can insert a new task into the scheduler and just have it link to Internet Explorer and then the web page like this: C:\Program Files\Internet

php-windows Digest 6 Jul 2001 02:39:23 -0000 Issue 638

2001-07-05 Thread php-windows-digest-help
php-windows Digest 6 Jul 2001 02:39:23 - Issue 638 Topics (messages 8125 through 8138): PHP - MSSQL - IIS Size Question 8125 by: Joshua Butcher 8127 by: Ivan Milanez Castellanos 8133 by: Frank M. Kromann Re: Is this possible? 8126 by: Carlos Andre Marques Mo

Re: [PHP-WIN] Newbie:Backend scripts

2001-07-05 Thread Ruslan Ohitin
Hi, Try to use a scheduler to run command php.exe -q x:\path\to\your\script.php every 2 hours. (-q - do not output HTTP headers) P> Hi, P> I am using php4 with mssql backend loaded on windows 2000. P> Here is my problem: P> I want to update my database contents every 2 hours with some sq

[PHP-WIN] Newbie:Backend scripts

2001-07-05 Thread PHPFAN
Hi, I am using php4 with mssql backend loaded on windows 2000. Here is my problem: I want to update my database contents every 2 hours with some sql statements. Is there anyway I can write scripts in php and run them every 2 hours? Anyother solutions are most welcome. Thank You, Sagil. --

[PHP-WIN] PHP Hosting

2001-07-05 Thread Max Graham
Not quite free, but damn close ... anyone heard anything about this hosting service? http://www.ucvhost.com/index.htm

[PHP-WIN] Problems installing PHP4.0.6 to work with Apache 1.3.20 for Win 2000

2001-07-05 Thread Lee Seng Fook
Hi, I am new to PHP. I have just downloaded PHP 4.0.6 and Apache 1.3.20 I followed the online documentation to get PHP in CGI-mode to run on Apache, i added the following lines in my httpd.conf file as follows. ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php AddType appl

Re: [PHP-WIN] Is this possible?

2001-07-05 Thread Kataoka Masato
Hi, >1: To execute php code when a A HREF link is clicked. > >I have the need to change a session variable depending on which link (of >a couple) that is clicked. The link is supposed to call $PHP_SELF which >then change its output depending on the value of the session variable. >I know that i can

Re: RE: [PHP-WIN] PHP - MSSQL - IIS Size Question

2001-07-05 Thread Frank M. Kromann
Migrating is not the only solution ! MSSQL uses a default truncation size of text fields. This size can be changed with parameters in php.ini. The maximum size of a text fiels in MSSQL is 2GB. If you are storeing a 2 GB Text field in the database and try to view it on a web page, the user is m

RE: [PHP-WIN] Is this possible?

2001-07-05 Thread Jesse S. Williams
You could also, for #2, simply record the changes to the database and allow those commands to be recalled and reversed. So, say that someone queried: INSERT INTO table_name (a1, b2, c3, d4) VALUES (joe, john, judy, jackie); You could make an undo available as an include that can parse it as a r

[PHP-WIN] btw i'm running php 4.0.6

2001-07-05 Thread abe wong
-- 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, e-mail: [EMAIL PROTECTED]

[PHP-WIN] php with .html extension in iis5

2001-07-05 Thread abe wong
i tried to make .html files run php with limited success (i have to...i'm migrating from a unix server with a ton of .html php files)... i set the isapi application mapping (i'm running php as an isapi extension), and yet i'm getting totally inconsistent results... sometimes, on rare occasion

Re: [PHP-WIN] Is this possible?

2001-07-05 Thread John Catron
To answer quetion number 2: Get the MySQL reference and look up COMMIT/ROLLBACK. If you are using the default table type (MyISAM), then it does not support COMMIT/ROLLBACK but it tells how to accomplish this using locked tables! John --- Michel Laine <[EMAIL PROTECTED]> wrote: > Using PHP 404

[PHP-WIN] RE: Is this possible? --> Correction

2001-07-05 Thread Carlos Andre Marques Moreira
Someone show me this error on the code below Someone showmed a error, then i'll sending it again. 1: To execute php code when a A HREF link is clicked. One way to do this is: // This will check what link was clicked // Here are the links > link 1 > link 2 Instead of (this code has a mistake)

RE: [PHP-WIN] PHP - MSSQL - IIS Size Question

2001-07-05 Thread Ivan Milanez Castellanos
Joshua: it appears to be a bug in MSSQL Server I've had the same problem with text fields larger than 20 pages, I don't know how much this will help you, but I migrated my entire database to MySQL and now it works fine it can read text fields as large as 120 pages no problem, also I noticed that M

[PHP-WIN] RE: Is this possible?

2001-07-05 Thread Carlos Andre Marques Moreira
1: To execute php code when a A HREF link is clicked. One way to do this is: // This will check what link was clicked // Here are the links > link 1 > link 2 Carlos André Marques Moreira [EMAIL PROTECTED] Bolsista CNPq / RHAE SENAI-CE/CETAE 2001 Ano Internacional do Voluntário -Or

[PHP-WIN] PHP - MSSQL - IIS Size Question

2001-07-05 Thread Joshua Butcher
I am preparing a report for a database at my company that will be shown on the web. It has several nested tables and such in it. One of the fields to show is a blob field. If the blob field is too long, IIS will hang, and not be able to render the table. If the blob field is less than 2K

php-windows Digest 5 Jul 2001 14:36:25 -0000 Issue 637

2001-07-05 Thread php-windows-digest-help
php-windows Digest 5 Jul 2001 14:36:25 - Issue 637 Topics (messages 8123 through 8124): GD-Library and very large images. 8123 by: Arve Bersvendsen Is this possible? 8124 by: Michel Laine Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To uns

[PHP-WIN] Is this possible?

2001-07-05 Thread Michel Laine
Using PHP 404pl1 / MySQL 3.23.35 / PWS / W98SE if anybody should need to know... The stuff is for an intranet application. 1: To execute php code when a A HREF link is clicked. I have the need to change a session variable depending on which link (of a couple) that is clicked. The link is