[PHP] order by

2004-01-27 Thread christian tischler
Is there a way wuth php to create a list ordered by more than one column
like in excel or access.

something like ORDER BY points AND score

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] variable in e-mail

2003-10-17 Thread christian tischler
I would like to use a form in a html page to pass the variables to a php
page, which sends an mail including these variables.

All I get in the mail though is a 1 rather than the string that I put into
the form???

Can anyone help please!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] variables in e-mail 2nd

2003-10-17 Thread christian tischler
I would like to use a form in a html page to pass the variables to a php
page, which sends an mail including these variables.

All I get in the mail though is a 1 rather than the string that I put into
the form???

Can anyone help please!

Some code I use
.
.
.
$messagepart1 = '
html head titleFree Subscription/title /head body
pSomebody would like to have a free subscription!!!/p ';
  $messagepart2 = (echo $salutation);
  $messagepart3 = ' /body /html ';
$message = $messagepart1.$messagepart2.$messagepart3;
.
.
.
mail([EMAIL PROTECTED], Free Subscription Application, $message, $headers);
.
.
.

The $salutation comes from the form and is handed over correctly, but the
syntax for to display the value of the variable in the html e-mail seems to
be the problem...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Links in e-mail

2003-05-30 Thread christian tischler
I use mail() to send e-mail automatically.

But all I can send is text. I would like to send links, but can figure out
how to make them work.

Thanks,

Christian



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] coockies in windows xp

2003-03-05 Thread christian tischler
having to use coockies to identify visitors I seem to have a problem with
visitors using windows xp.

the command I use is setcoockie(coockie1, true, time()+600)

any ideas???



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] coockies in windows xp

2003-03-05 Thread christian tischler
Sorry of course it's cookie not coockie

Yes, it works on win98 andc win2k but not on winxp
yes, cookies are turned on
don't know - configuration of winxp is standard security level for explorer
is medium



Chris Hayes [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 At 15:29 5-3-03, you wrote:
 having to use coockies to identify visitors I seem to have a problem with
 visitors using windows xp.
 
 the command I use is setcoockie(coockie1, true, time()+600)
 
 any ideas???
 Did you test this with various versions of windows?
 Do these people have cookies turned on, do you have a test built in?
 Do these people use one of these nightmare 'Safe Internet' tools
installed?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] call a website from a php script

2003-02-16 Thread christian tischler
can anybody tell me please how to call a website from a php script.

meaning
if (something happens) {goto www.google.com} else {goto www.yahoo.com}

tanks,

christian



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php