[PHP] Any PHP API for Meeting-Pro?

2001-01-24 Thread James R. Butzen

Hi All,

I have a client uses Meeting-Pro database.  Is there any API I can use with
PHP that will allow me to interact with Meeting-Pro db?

Thanks in advance for any comments.

James R. Butzen
NEBIS Tech. Support
http://www.nebis.com


-- 
PHP General 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-general@lists.php.net

2001-01-24 Thread James R. Butzen

try

$retrn = "AASIDFIFJ&";


-Original Message-
From: Karl J. Stubsjoen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 24, 2001 4:17 PM
To: PHP Mailing List
Subject: [PHP] Finding an '&'


Should this correctly find '&' or is & and special searching character?

# looking for an & at the end
$retrn = AASIDFIFJ&

if($str{strlen($retrn)-1}=='&')

Thanks!


-- 
PHP General 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 General 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] Need to download files in IE

2001-03-12 Thread James R. Edgar

I am trying to set my script up so that when a person clicks on the link, that
the page will prompt for a download w/ the filename in the File Name field in
the Save As prompt.
I can get this to work in Netscapse but when I try to do it with Internet
Explorer I encounter problems. It either says there is no application to read
the file (I have acrobat reader on the computer.) or it displays the prompt with
either [variable's name passed to script].htm or download.php. And the file I am
trying to download is a PDF file. If anyone can help me with this I would
greatly appreciate this, and thanks in advance.

Regards,
Edgar


-- 
PHP General 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]




RE: [PHP] Need to download files in IE

2001-03-12 Thread James R. Edgar

Hello,

This is the URL of the link that I use.
http://www.sitename.com/pizzeria.php3?pizzeria=aldentes

Here is the code from the script.
$file_path = "menus";
$file = $pizzeria . ".pdf";
$full_file = $file_path."/".$file;
$filesize=filesize($full_file);

header("Content-disposition: attachment; filename=\"$file\"");
header("Content-type: application-download");
header("Pragma: no-cache");
header("Expires: 0");
$fn=fopen($full_file,"r");
fpassthru($fn);
fclose($fn);
exit;

I tried it and it did not work. When I click on the link it shows "pizzeria.htm"
in the File Name field. Any other suggestions.

Regards,
Edgar

-Original Message-
From: Pierre-Yves Lemaire [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 12, 2001 10:41 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Need to download files in IE


Hello,

I do that with this piece of code. ( This will close the window, so open a
new one and put this code inside)

header("Content-disposition: attachment; filename=\"$fileName\"");
header("Content-type: application-download");
header("Pragma: no-cache");
header("Expires: 0");
$fn=fopen($FileName,"r");
fpassthru($fn);
fclose($fn);
exit;

py

- Original Message -
From: James R. Edgar <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, March 12, 2001 7:57 PM
Subject: [PHP] Need to download files in IE


> I am trying to set my script up so that when a person clicks on the link,
that
> the page will prompt for a download w/ the filename in the File Name field
in
> the Save As prompt.
> I can get this to work in Netscapse but when I try to do it with Internet
> Explorer I encounter problems. It either says there is no application to
read
> the file (I have acrobat reader on the computer.) or it displays the
prompt with
> either [variable's name passed to script].htm or download.php. And the
file I am
> trying to download is a PDF file. If anyone can help me with this I would
> greatly appreciate this, and thanks in advance.
>
> Regards,
> Edgar
>
>
> --
> PHP General 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 General 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 General 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]




RE: [PHP] Good Free PHP Editor?

2001-03-12 Thread James R. Edgar

Hello,
I use editplus. It has a feature that lets you add in auto completion files,
syntax files. It does have an eval version, and it is not that expensive.
http://www.editplus.com

Regards,
Edgar

-Original Message-
From: Boget, Chris [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 12, 2001 3:48 PM
To: 'Simon Garner'; [EMAIL PROTECTED]
Subject: RE: [PHP] Good Free PHP Editor?


> > Has the worst memory management of any software I've ever used.
> > I have to reboot at lest 10 times a day when I use it.  The support
> > forum on their site is filled with complaints on this issue.  Their
> > response to this issue was not to fix the memory leak (or whatever
> > it is) but to issue a warning when resources are getting dangerously
> > low to give you the opportunity to save all your work before you reboot.

> > Beyond that, their stance is "Well, if you don't like it, return it and
we'll
> > give you a refund".
> > If this wasn't the only piece of software that handled projects the way
> > we needed, we'd have thrown out this piece of garbage software a *long*
> > time ago.
> Running under Win2K I can have HomeSite 4.5.1 open for weeks,
> working on 10+ files, without any problems whatsoever.
> However, I used to run it under Win98 and it would crash 1-2 times per
> day...

Unfortunately, I'm running Win98... :/

Chris


-- 
PHP General 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]