php-general Digest 10 Nov 2007 12:40:45 -0000 Issue 5120

2007-11-10 Thread php-general-digest-help
php-general Digest 10 Nov 2007 12:40:45 - Issue 5120 Topics (messages 264292 through 264296): My first xml try 264292 by: Ronald Wiplinger 264295 by: Andrew Ballard Re: debugging imap_open 264293 by: John Gunther Re: Local vs Master Configure values 264294

php-general Digest 11 Nov 2007 01:44:22 -0000 Issue 5121

2007-11-10 Thread php-general-digest-help
php-general Digest 11 Nov 2007 01:44:22 - Issue 5121 Topics (messages 264297 through 264308): Re: explorer 264297 by: Bastien Koert 264298 by: Rick Pasotto 264300 by: admin.buskirkgraphics.com Re: My first xml try 264299 by: Andrew Ballard Problems building

[PHP] explorer

2007-11-10 Thread kNish
Hi, How if, it is possible to open a windows explorer with a path specified in it, thru a php script. BRgds, kNish -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] explorer

2007-11-10 Thread Bastien Koert
on the local machine? no. you can simulate an explorer for files on the server bastien Date: Sat, 10 Nov 2007 18:10:39 +0530 From: [EMAIL PROTECTED] To: php-general@lists.php.net Subject: [PHP] explorer Hi, How if, it is possible to open a windows

Re: [PHP] explorer

2007-11-10 Thread Rick Pasotto
On Sat, Nov 10, 2007 at 09:33:17AM -0500, Bastien Koert wrote: on the local machine? no. you can simulate an explorer for files on the server An input type=file will automatically display a browse button that opens a user environment specific file browser (aka explorer). -- Market-like

Re: [PHP] My first xml try

2007-11-10 Thread Andrew Ballard
On Nov 10, 2007 12:56 AM, Ronald Wiplinger [EMAIL PROTECTED] wrote: Andrew Ballard wrote: Ronald, On Nov 9, 2007 9:05 PM, Ronald Wiplinger [EMAIL PROTECTED] wrote: I tried to use echo statements for debugging and found that it seems I do not get the information of require(). What do I

RE: [PHP] explorer

2007-11-10 Thread admin
You can't (SERVER vs Client) you cannot make Php open an program on the client computer. If you want to get a file from your computer that is a simple HTMLTag. input type=file name=image tabindex=1 size=35 / Please explain if that is not what you meant. -Original Message- From: kNish

[PHP] Problems building 5.2.4 on Solaris 9 SPARC

2007-11-10 Thread Khyron
I have tried this for weeks with no success, so I am asking for help with this. Something seems really off with the PHP 5.2.4 build process. I am trying to build PHP 5.2.4 with Apache 2.2.6 and PostgreSQL 8.2.5 support using the following configuration (from a file which I source):

Re: [PHP] Re: debugging imap_open

2007-11-10 Thread Jochem Maas
John Gunther wrote: Since no one seems to know about the debug feature, let me ask about the imap argument directly. None of the following work, always Couldn't open stream: mail.usservas.org:143 mail.usservas.org:110 wrong? Here's my code: ini_set('error_log','/tmp/imap.txt'); some

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
I am not sure that would help. Just another can of worms. The $_REQUEST is tied into a whole bunch of database functions. My present code ? $email = $_REQUEST['email'] ; $message = 'a href='.www.zoneofsuccessclub.com.'link /a'; $headers = 'MIME-Version: 1.0' . \r\n; $headers .=

Re: [PHP] Cannot send a hyperlink

2007-11-10 Thread Jochem Maas
Brad wrote: I am not sure that would help. I am. Just another can of worms. no, not really, not at all. The $_REQUEST is tied into a whole bunch of database functions. wtf. $_REQUEST is a super global - nothing what so ever to do with databases. My present code is about as

Re: [PHP] Cannot send a hyperlink

2007-11-10 Thread Stut
Brad wrote: I am not sure that would help. Just another can of worms. The $_REQUEST is tied into a whole bunch of database functions. I have no idea what you mean by this. It makes no sense to me. My present code ? $email = $_REQUEST['email'] ; $message = 'a

Re: [PHP] chrooted php5-cgi in a non chrooted apache

2007-11-10 Thread Jochem Maas
hi Joerg, not a solution but the open_basedir ini setting on a per Vhost setting may offer a [partial] work around What I've get so far is, that I've created a chroot jail within the web-directory. I can chroot to there and execute php (I used jailer, for this). But I don't get it to

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
I am reading up on it now. I am going to take your advice. Be prepared for a few questions as I make it past the learning curve! :o) -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Saturday, November 10, 2007 4:47 PM To: Brad Cc: php-general@lists.php.net Subject:

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
Explanation of code $email = $_REQUEST['email'] ; (generated by dreamweaver that pulls in the database functions) $message = 'a href='.www.zoneofsuccessclub.com.'link /a'; (my nemesis, I can not figure out this puppy. If it works at all, php will generate it at text and not html. Taken from

Re: [PHP] Cannot send a hyperlink

2007-11-10 Thread Stut
Brad wrote: Explanation of code $email = $_REQUEST['email'] ; (generated by dreamweaver that pulls in the database functions) No database involved here. None. Nadda. Niet! $message = 'a href='.www.zoneofsuccessclub.com.'link /a'; (my nemesis, I can not figure out this puppy. If it works at