Re: [PHP-WIN] PHP, COM and Excel

2003-06-05 Thread Luis Ferro
I would suggest to read the info regarding using COM objects in PHP and then, search for using excel COM in VB6... (the object members should be the same as in VB6 and work similary, apart from some synthax diferences between VB6 and PHP). Cheers, Luis Ferro [EMAIL PROTECTED] wrote: Dear All,

Re: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread Cristian MARIN
If the primary key exist use an UPDATE tranzaction to rewrite all fields if not existing use INSERT: $sql="SELECT id FROM table1 WHERE name='old_name'"; $result = mysql_query($sql); if (There_is_no_id){ $sql="INSERT INTO table1 VALUES (...)"; }else{ $sql="UPDATE table1 SET ... WHERE id

RE: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread toby z
good heavenz man lemme breath first ok > That sounds to be a strange approach to restore an back up. > What precisely are you trying to achieve? > > I assume you also are aware about that a backup mostly only saves > time points, and that you usually need to restore the latest full > back up and

RE: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread Svensson, B.A.T. (HKG)
That sounds to be a strange approach to restore an back up. What precisely are you trying to achieve? I assume you also are aware about that a backup mostly only saves time points, and that you usually need to restore the latest full back up and then add on incremental changes until the last time

[PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread toby z
hay guyz im a bit stuck im restoring backup data and i need to fetch all fields of tables except for the primary key is there anyway to do that ? i ve been searchin fo a biultin function but couldnt find any im sorry if this is off the list :$ thnx a mill toby ___

[PHP-WIN] Re: PHP, COM and Excel

2003-06-05 Thread Manuel Lemos
Hello, On 06/05/2003 04:55 AM, N A Morgan wrote: Dear All, Does anyone have any information on using COM in PHP to build Excel spreadsheets? I have a potential need and can't find any sites specific to this task. Depending on what you want to do, you may find here plenty of solutions, even some

[PHP-WIN] Re: Deleting users from htpasswd

2003-06-05 Thread Guru P Chaturvedi
Hi Cristian, Well that's right... i wanna do it thru PHP Scrip... but dunno what exactly i should use... any clues...? "Cristian Marin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Remove the line of the user from the .htpasswd. You can do it manually or a php script can do it for

php-windows Digest 5 Jun 2003 09:12:12 -0000 Issue 1762

2003-06-05 Thread php-windows-digest-help
php-windows Digest 5 Jun 2003 09:12:12 - Issue 1762 Topics (messages 20192 through 20199): Display new Page after Form is processed 20192 by: Oliver Steimer 20193 by: Mike Brum 20197 by: Cristian MARIN Re: Unable to get php pages to load 20194 by: Gustavo An

AW: [PHP-WIN] PHP, COM and Excel

2003-06-05 Thread Sven Schnitzke
Hi Neill, don't wonder 'bout the lack of sites. You are entering commercial area with using Excel. If you are heading for heavy use you might want to take look at BiffWriter http://www.web-aware.com/biff/ It does write Excel files directly without the overhead of COM (and Excel itself, for that

[PHP-WIN] PHP, COM and Excel

2003-06-05 Thread N . A . Morgan
Dear All, Does anyone have any information on using COM in PHP to build Excel spreadsheets? I have a potential need and can't find any sites specific to this task. Regards, Neil Morgan MSc Admin Computing, University of Brighton, 01273 643930 http://www.brighton.ac.uk/ -- PHP Windows Mailing

[PHP-WIN] Re: Display new Page after Form is processed

2003-06-05 Thread Cristian MARIN
Put header("Location: my_second_page.php"); after the script which enter the data in the db -- - Cristian MARIN InterAKT Online (www.interakt.ro) +4021 411 2610 [EMAIL PROTECTED] "Oliver Steimer" <[EMAIL PROTECTED]> wrote in message news:[EMAI

Re: [PHP-WIN] Installation problems...

2003-06-05 Thread Bobo Wieland
Hi! To all that helped me before; Thanks! It works now! I didn't install phpMyAdmin, but MySQL Front, though... -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Unable to get php pages to load

2003-06-05 Thread B Hodge
No I have just Netscape servers running on Windows 2000 machine. I can not, at this time, investigate installing apache servers due to the learning curve. I have configured the Netscape servers to run Perl using the exact same procedure and they are running perl just fine. The problem I am having i

[PHP-WIN] Re: Unable to get php pages to load

2003-06-05 Thread Gustavo Andrade
Do you have the apache installed? "B Hodge" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > I have installed php and configured it per the install manual. > I associated .php extensions to run php scripts via the php interpreter and > ran the test.php script successfully. > I th

RE: [PHP-WIN] Display new Page after Form is processed

2003-06-05 Thread Mike Brum
In the script that you use to actually enter the information into your DB simply output HTML headers and print what you want to the screen. A basic example: Thank you for your submission..."; ?> -M -Original Message- From: Oliver Steimer [mailto:[EMAIL PROTECTED] Sent: Wednesday, Jun

[PHP-WIN] Display new Page after Form is processed

2003-06-05 Thread Oliver Steimer
HI , after pressing "submit" on my form page and puting the data in my database i wish to display a new html page. How can i do this ? thanks for helping Oliver -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-windows Digest 4 Jun 2003 20:00:43 -0000 Issue 1761

2003-06-05 Thread php-windows-digest-help
php-windows Digest 4 Jun 2003 20:00:43 - Issue 1761 Topics (messages 20181 through 20191): Re: Deleting users from htpasswd 20181 by: Cristian MARIN Report Generator for PHP 20182 by: irwan nurwandi 20186 by: Mikey 20191 by: Manuel Lemos why seesions always

[PHP-WIN] Re: Report Generator for PHP

2003-06-05 Thread Manuel Lemos
Hello, On 06/04/2003 07:11 AM, Irwan Nurwandi wrote: does anybody know the report generator for php?? like crystal report for asp?? You may want to try this class: Class: phpreports http://www.phpclasses.org/phpreports There is also Agata Report which is a PHP GUI driven application. -- Regards

[PHP-WIN] Need assistance

2003-06-05 Thread Ron Ackerman
First, I want to thank whoever takes this on ahead of time. I'm just starting to learn php and have set up some sites using Geeklog. But I need to automate email subscriptions. I need to connect to a mail server using mail.myserver.com then take variables from my input form that will create a mai

[PHP-WIN] Re: why seesions always lost

2003-06-05 Thread Radovan Radic
maybe session_trans_sid is set to 0 on server, and in your installation is 1. Dont rely on automatic url encoding, add session manually to url. "Yuegong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi ; > I set a intranet App by PHP and Mysql; when i test on my NootBook it is

[PHP-WIN] exif_read_data

2003-06-05 Thread John Ellingsworth
Does anyone know of a workaround for this problem? The doc for exif_read_data function says filename cannot be a url. I need a way to get the non-functioning example to work. Thanks in advance. \\This works: $exif = exif_read_data('\photos\010202\010202_001.jpg',0,true); foreach($exif as $key=>

[PHP-WIN] exif_read_data

2003-06-05 Thread John Ellingsworth
Has anyone gotten this function to work with virtual directories? This is my setup: C:\apache\Apache2\htdocs c:\php Virtual Directory: d:\photos I have a script with this (modified) example function in it (from the documentation). This works: $origpath = "\photos\010202\010202_001.jpg";

RE: [PHP-WIN] Report Generator for PHP

2003-06-05 Thread Mikey
If I recall correctly, Crystal Reports are a series of COM objects, and if that is the case then you could carry on using that... HTH, Mikey > -Original Message- > From: irwan nurwandi [mailto:[EMAIL PROTECTED] > Sent: 04 June 2003 11:12 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] Repor

RE: [PHP-WIN] Getting Started

2003-06-05 Thread Ed Gorski
The Wrox series of books are usually pretty good for beginners: http://www.amazon.com/exec/obidos/ASIN/1861006918/qid=1054735752/sr=2-1/ref= sr_2_1/103-7575618-4662261 They lie more to the programming side of things, if you need help with the install on IIS just look at the docs that come with th

[PHP-WIN] Getting Started

2003-06-05 Thread Kevin Bachelder
Hello all, We will be deploying a custom software package from a vendor and part of what they require on our IIS server is PHP v4 or higher. I have never worked with PHP so I am looking for recommendations on good books or other resources to learn a little bit about PHP. Thanks in advance, K