> Sorry, I'm a PHP newbie. The only way I know you can pass values to a php
> script is the normal way, through the URL, as in: a
> href=yourscript.php?var1=value&var2=value... etc.
Not strictly true.
I am primarily a Lasso developer and I can pass values (and do) using Form,
URL and Cookies.
Sorry, I'm a PHP newbie. The only way I know you can pass values to a php
script is the normal way, through the URL, as in: a
href=yourscript.php?var1=value&var2=value... etc.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands,
Both don't work... same problem... I cannot figure it out
"Olivier Hubert" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
>
> If you mysql connection is the only one you're trying to
maintain,
> I suggest you try
>
> $result = @mysql_query($sql) or
It definitely looks like server doesn't like something. See in the server
logs if it says any thing. I have never used argosoft server so no idea
what's wrong with it.
Try to use the pop3 protocol name in the request like
$mbox = imap_open("{".$email_server.":110/pop3}".$folder,$name,$passwd);
Daniel,
Well...It sure didn't work for me with the comma and space...I got:
Warning: Server Error in c:\program files\apache
group\apache\htdocs\send_simpleform.php on line 10
When I got rid of the second e-mail address and just used one address
everything is back to normal.
Further, I checked
php-windows Digest 19 Nov 2001 23:49:03 - Issue 863
Topics (messages 10498 through 10524):
Re: Apache 2.0.28 module
10498 by: Sebastian Bergmann
upload image
10499 by: Brian Feliciano
Re: Back button using sessions
10500 by: Troy Moreland
Re: Secure Web Applicati
> > $recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma
It is also worth pointing out that you need to include the space as
well.
$to = "[EMAIL PROTECTED],[EMAIL PROTECTED]" won't work, whereas
$to = "[EMAIL PROTECTED], [EMAIL PROTECTED]" will work.
Daniel.
--
PHP Windows Mail
Hi,
If you mysql connection is the only one you're trying to maintain,
I suggest you try
$result = @mysql_query($sql) or die ("Couldn't execute
query.");
e.g. without passing the $connection parameter. Also, try using mysql_error
to get the actual error message.
HTH!
Olivier
At 16
hi - anyone know why i am having problems with PHP scripts on my ArGoSoft Mail Server
- it's coming up with these despite all configuration checks ..(it's an intranet
server by the way)
Warning: Couldn't open stream {localhost:110}INBOX in D:\...\includes
Fatal error: Maximum execution time of
try using single quotes
Jim
- Original Message -
From: "Todd Williamsen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 19, 2001 2:30 PM
Subject: [PHP-WIN] new problem... problem with Query...
> Here it is I get the error "cannot execute query" so there is
> so
Here it is I get the error "cannot execute query" so there is
something wrong with the SQL and I cannot figure it out...
http://www.feminineforum.com/admin/pick_modcontact.php";);
exit;
} else {
session_start();
}
if ($valid != "yes") {
header("Location: http://www.feminineforum.com/
I never really worked with querying with LDAP any good resources on it. And
Using PHP with it.
Ryan Conover
[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.pitt.edu/~rscst25/
-Original Message-
From: Egil Helland [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 19, 2001 5:06 PM
To: [EM
yes
-Original Message-
From: Craig Morrison [mailto:[EMAIL PROTECTED]]
Sent: 19 November 2001 22:11
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Adding *another* person to an e-mail *to:*
address
Ross Fleming wrote:
>
> Actually yes. I was just looking there mys
Ross Fleming wrote:
>
> Actually yes. I was just looking there myself...
> /* recipients */
> $recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma
The concatenation operator "." is in use here. Is there a previous $recipient
that this can be added to?
> $recipient .= "Kelly <[EM
Actually yes. I was just looking there myself...
/* recipients */
$recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma
$recipient .= "Kelly <[EMAIL PROTECTED]>" . ", ";
$recipient .= "[EMAIL PROTECTED]";
Ross
-Original Message-
From: Craig Morrison [mailto:[EMAIL PROTECTED
On Mon, 19 Nov 2001 09:53:14 -0500, Conover, Ryan wrote:
>Has anyone been able to get information from Active Directory using
>php? How did you do that?
The easiest way to do this is through the use of LDAP. I actually
wrote a script to snatch some info from it, but dont know if I still
have it l
See:
http://www.php.net/manual/en/function.mail.php
Pay particular attention to example #4.
Ross Fleming wrote:
>
> I think you can send it as an extra header...
>
> $mailheaders.="To: $otheremail\n";
>
> I can't comment by saying used PHP to do this, but if you understand the
> SMTP prot
I think you can send it as an extra header...
$mailheaders.="To: $otheremail\n";
I can't comment by saying used PHP to do this, but if you understand the
SMTP protocol then you'll know it should work.
Ross
-Original Message-
From: Anthony Ritter [mailto:[EMAIL PROTECTED]]
Sent: 19 Nov
Ross,
As much I would like to say it works...no dice.
I tried:
$to.=";[EMAIL PROTECTED]"; (semicolon)
$to.=",[EMAIL PROTECTED]"; (comma)
$to.="[EMAIL PROTECTED]".",";
ended the first e-mail string with quotes then added a dot then put a comma
in between quotes. Then ended it with a semicolo
I'm a new PHP user, and can't find any help anywhere about being able to
reference an existing session from a website (IIS/ASP) to a IIS/PHP.
Basically, I have PHP and MySQL running on a Win2000 pc, but also have ASP
running as the primary language for a website. We're integrating PHP and
need t
You're missing an open parenthesis in the insert part...
$sql = "INSERT INTO tblmembers ( ID, etc
Ross
-Original Message-
From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
Sent: 19 November 2001 20:00
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Julie Meloni's Modified Contact management
-Original Message-
From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
Sent: 19 November 2001 20:00
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Julie Meloni's Modified Contact management script
I cannot figure out why the mysql_query is not working. Everything id done
according to Julie's b
I cannot figure out why the mysql_query is not working. Everything id done
according to Julie's book and I end up with the "Couldn't execute query"
error
Here is the script:
http://localhost/show_addcontact.php";);
exit;
} else {
session_start();
}
if ($valid != "yes") {
header("Location
stick a comma or a semicolon in between (can't remember which)
$to.="; [EMAIL PROTECTED]";
-Original Message-
From: Anthony Ritter [mailto:[EMAIL PROTECTED]]
Sent: 19 November 2001 18:59
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Adding *another* person to an e-mail *to:* address
Hi,
Tha
Hi,
Thanks to all that helped me out yesterday.
I'm using PHP with Apache on a MS Windows 98 box.
I would like to include a cc to another e-mail adresss when sending an
e-mail.
In addition I would like to *receive* and *also have the cc person receive*
this e-mail as well.
Right now, I am rece
You could use LDAP. Just depends on what attributes you are dealing with
since AD isn't a true LDAP directory. Anything from the inetOrgPerson class
can not be pulled or updated with AD...
"Ryan Conover" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Has an
echo ("$password"); to see exactly what is being returned. There
might be a being appended to it for some reason...
Ross
-Original Message-
From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
Sent: 19 November 2001 03:16
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Authentication Scripts
On Mon, Nov 19, 2001 at 11:34:41AM +0100, Sebastian Bergmann wrote:
> Jobarr wrote:
> > I need a build of PHP that can be used as a module with Apache 2.0.28
> > beta.
>
> Please do not massively cross-post to the various php.net mailinglists
> or newsgroups.
>
> --
> Sebastian Bergmann
Has anyone been able to get information from Active Directory using php? How
did you do that?
Ryan Conover
[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.pitt.edu/~rscst25/
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-m
I meant LDAP SSL, not HTTP SSL! :)
"Egil Helland" <[EMAIL PROTECTED]> wrote in message
2008233756.BGQE4910.mta01@workhorse">news:2008233756.BGQE4910.mta01@workhorse...
On Sun, 18 Nov 2001 11:58:20 -0600, Troy Moreland wrote:
>Can anyone give me details on how to make my PHP-LDAP applicatio
I tried your option 2 and it worked great! Not sure if that degrades
performance or not but getting rid of those annoying messages is much worse
that a slight degradation to me!
Thanks!
"Egil Helland" <[EMAIL PROTECTED]> wrote in message
2008233831.BGQY4910.mta01@workhorse">news:20082338
how can i upload an image??
i tested using copy( ) but it returned a Permission Denied error...
please help...thanks.
do i really have to do an ftp?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Jobarr wrote:
> I need a build of PHP that can be used as a module with Apache 2.0.28
> beta.
Please do not massively cross-post to the various php.net mailinglists
or newsgroups.
--
Sebastian Bergmann
http://sebastian-bergmann.de/ http://phpOpenTracker.de/
Did I hel
php-windows Digest 19 Nov 2001 11:00:14 - Issue 862
Topics (messages 10479 through 10497):
PHP Mail() function. Help please...
10479 by: Anthony Ritter
10480 by: Julie Meloni
10486 by: Anthony Ritter
Authentication Scripts
10481 by: Todd Williamsen
1
Hi,
>What's the problem? It's just another statment...
not if you use OUTPUT and RETURN values...
There are three new API's in php_mssql. F. Kromman included
them for php4.1, but I have a copy of php_mssql 4.0.6 with
the new stored procedures API's, they are well tested, don't worry.
If you as
What's the problem? It's just another statment...
>-Original Message-
>From: wim van houts [mailto:[EMAIL PROTECTED]]
>Sent: Monday, November 19, 2001 9:52 AM
>To: [EMAIL PROTECTED]
>Subject: [PHP-WIN] Calling stored procedure in PHP
>
>
>Hi all,
>
>I am transfering a IIS/ASP solution to
Hi all,
I am transfering a IIS/ASP solution to Apache/PHP solution, though we will
still use MS SQL Server for our databases. Therefore it is necesary that I
can call stored procedures that are already in the database. Is there
someone out there who knows how to? I've looked around some time but
Command-line parameters are ignored when using PHP as a CGI-module.
What is the problem?
--
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]
I need a build of PHP that can be used as a module with Apache 2.0.28 beta.
Anyone know where I could find one? It is not compatible with previous 2.0
builds.
thanks
-Jobarr
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands,
39 matches
Mail list logo