The the LAMP platform is supposed to more stable but
If it ain't broke why fix it?
--- [EMAIL PROTECTED] wrote:
> Hi, I'm new here. I imagine that this question was
> made a lot of times in this
> list, but reading the archive i couldnt find a
> recently answer to this
> question:
>
>I wa
That's fine. I already got it going (somebody helped me). Thanks for that
tip anyhow.
"Mike Gohlke" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
Are you hitting enter while in one of the fields or clicking the submit
button. I've seen versions of IE that woul
Are you hitting enter while in one of the fields or clicking the submit
button. I've seen versions of IE that would not set the submit button
if enter was used. Personally, I would check for isset($username) &&
isset($password).
Mike...
(Sorry for the very late reply, etc. I've been dealin
On Sunday 17 March 2002 13:14, Jason Wong wrote:
> You're using 4.1.1, $HTTP_POST_VARS{} has been replaced by $_POST[] (see
> changelog/history/php.ini for details).
Sorry a typo:
$HTTP_POST_VARS[] has been replaced by $_POST[]
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
/
On Sunday 17 March 2002 12:12, Dr. Shim wrote:
> I'm using PHP 4.1.1 (for Windows). Here is *all* of my code.
>
>
>
> Administrative Log-In Page
>
>
>
>
> Please enter your username and password below in the fields below.
>
> Username:
>
You're using 4.1.1, $HTTP_POST_VARS{} has been
[EMAIL PROTECTED] writes:
>I'm using PHP 4.1.1 (for Windows). Here is *all* of my code.
>
>
>
>Administrative Log-In Page
>
>
>
>
>Please enter your username and password below in the fields below.
>
> Username:
>
>
> Password:
>
>
>
>
>
>
Hello Jason
If I were you, I would not u
I'm using PHP 4.1.1 (for Windows). Here is *all* of my code.
Administrative Log-In Page
Please enter your username and password below in the fields below.
Username:
Password:
mailto:[EMAIL PROTECTED]\";>e-mail the text below to
me.~~~$PHP_ERROR$db~~~";
On Sunday 17 March 2002 12:04, Dr. Shim wrote:
> Sorry about the subject heading.
>
> I've put in
>
>
>
> But still when I click on the "Log In" button, thing happens.
Please post the rest of your code and also which version of PHP you're using.
--
Jason Wong -> Gremlins Associates -> www.gre
Oh, by the way, the "if...then" claus runs successfully, but the function
never is called. Am I wrong?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Sorry about the subject heading.
I've put in
But still when I click on the "Log In" button, thing happens.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Sunday 17 March 2002 11:46, Dr. Shim wrote:
> I've changed
>
>
>
> To
>
>
>
>
> And I get a parse error. Could you possibly help me correct this? (I'm a
> newbie, so have pity on me. =)
Use:
Also, please use a descriptive subject heading next time!
--
Jason Wong -> Gremlins Associa
I've changed
To
And I get a parse error. Could you possibly help me correct this? (I'm a
newbie, so have pity on me. =)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Dr. Shim wrote:
>I've tried repediately to have a PHP script validate a form when the form is
>submitted. I'm quite new to PHP, and I'd really appreciate the help anybody
>could give me. I've been stuck on this problem far to long.
>
>I have a form (here's the code):
>
>
> Username:
>
>
The sh
On Friday, March 8, 2002, at 01:15 PM, Sven Jacobs wrote:
> Hey
>
> I have 2 values stored in my session, how do I pull them back out ?
>
$_SESSION['name_of_first_value']
$_SESSION['name_of_second_value']
in PHP 4.1 or greater.
And hay is for horses.
Erik
Erik Price
Web Developer
So sprach »Mårten Andersson« am 2002-01-23 um 19:27:04 + :
> hello again! =)
>
> I.m using fwrite() to write to the file. What I want is a new row i a
> textdocument after each strung I insert..
>
> I've been told that "\n" should be the solution to the problem whith new
> rows i a text-do
On Thu, Dec 06, 2001 at 12:08:12PM +0100, Susanne Benkert wrote:
> After recompiling my Php with the newest LDAP-Libraries and Openssl
> "ldap_connect("ldap://hostname";)" works. But I still have problems with
> "ldap_connect("ldaps://hostname")":
Could you check whether ldapsearch -H "ldaps://h
Eduardo,
Are you trying to do this in PHP or interactively? If with PHP I won't be
much help, as the I've not used its FTP functions. Otherwise it's a
straightforward FTP operation.
There may be a problem doing it from within PHP as the webserver is
probably running as "nobody", who usually,
time: http://chatmusic.com/volunteer.htm
- Original Message -
From: Eduardo Kokubo <[EMAIL PROTECTED]>
Newsgroups: php.general
To: Miles Thompson <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Cc: Eduardo Kokubo <[EMAIL PROTECTED]>
Sent: Friday, August 03, 2001 9:35 AM
Sub
PROTECTED]
Subject: RE: [PHP] again with the regex
Jerry, try sprintf(). Here's an example:
sprintf("(%s) %s-%s", substr($GLOBALS["appPhoneHome"], 0,
3),substr($GLOBALS["appPhoneHome"], 3, 3),substr($GLOBALS["appPhoneHome"],
6, 4))
Kirk
> -Origina
if they all have the same format, then you can do this (don't need regexs)
$number = '1234567890';
$formatted_number = '(' . substr($number,0,3) . ') ' . substr($number,3,3) .
'-' . substr($number,6);
-jack
-Original Message-
From: Jerry Lake [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, Ma
well, if all numbers are *always* 10 digits long,
use this
$old = "1234567890";
$new = preg_match('/(\d{3})(\d{3})(\d{4})/', $old, $matches);
print "(". $matches[1] .") ". $matches[2] ."-". $matches[3];
prints "(123) 456-7890"
> -Original Message-
> From: Jerry Lake [mailto:[EMAIL P
Jerry, try sprintf(). Here's an example:
sprintf("(%s) %s-%s", substr($GLOBALS["appPhoneHome"], 0,
3),substr($GLOBALS["appPhoneHome"], 3, 3),substr($GLOBALS["appPhoneHome"],
6, 4))
Kirk
> -Original Message-
> From: Jerry Lake [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 15, 2001 4:48
Check out phpwizard.net
http://phpwizard.net/projects/phpIRC/
By reading through their code you can probably learn alot of what you want
to know.
--
Plutarck
Should be working on something...
...but forgot what it was.
"Marius Petravièius" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTE
23 matches
Mail list logo