Re: [PHP] hotmail, yahoo..why can't me?

2001-07-05 Thread another programmer

I'm being quick, so pseudo code:
on message display page:







what happens is on sending, deleteList will be a list of all selected checkbox's 
values.

on action page: (I'd also check deleteList isonly numeric characters and numbers, use 
a Regular Expression to
cleanse the variable)
 0>




- Original Message -
From: "Dhaval Desai" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 05, 2001 5:04 PM
Subject: [PHP] hotmail, yahoo..why can't me?


Hi!

I wanna do something like in ur mailboxes. if u check
ur hotemail or yahoo a/c u can find checkboxes on the
left side of each message. U can check the boxes and
delete the messages..

I want to delete certain rows that come out of a
database. So if I have 20 records coming out of the
databases i want a checkbox on the left of each
message so that I can delete some of them if i want.


Is there a way.. i don't seem to get the logic to do
this..

Please help me out...


Thank You
Dhaval Desai

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.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 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] url without a query string?

2001-07-08 Thread another programmer

What are the requirements?  Can you allow JS code?  Meta refresh tags?

- Original Message -
From: "Jon Yaggie" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 09, 2001 2:22 PM
Subject: [PHP] url without a query string?


the problem

i have a page that uses a query string to determine content.  ie index.php?id=2  in 
this page there is a link
to a memebership area that uses a remote service.  this service requires that thee be 
the exact same refering
url.  is the refering url must always be index.php.  how can i do this?  can i do this?







Thank You,

Jon Yaggie
www.design-monster.com

And they were singing . . .

'100 little bugs in the code
100 bugs in the code
fix one bug, compile it again
101 little bugs in the code

101 little bugs in the code . . .'

And it continued until they reached 0





-- 
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] Re: url without a query string?

2001-07-08 Thread another programmer

IE 5.5 keeps the referer of the original page you clicked.  I ran a quick test, but my 
computer is a weird
setup, so it may not be the case with other setups.

- Original Message -
From: "Inércia Sensorial" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 09, 2001 4:15 PM
Subject: [PHP] Re: url without a query string?


  I am not sure if the header(); function still maintain the referer, but if
it does:

  You could make the first link lead to any named page, like: gate.php

  On gate.php you put: header("Location: index.php");

  On index.php you put:

if ($HTTP_REFERER == 'http://www.your_domain.com/gate.php') {
header ("Location: http://www.where_users_really_will_go.com";)
}

  Maybe a few protections on gate.php so users don't call it directly are
nice too...

--


  Julio Nobrega.

Yes, I am developing another 'Portal-System'
Have a look:
http://sourceforge.net/projects/toca

"Jon Yaggie" <[EMAIL PROTECTED]> wrote in message
02e801c1082e$c48e6a30$0100a8c0@piiimonster">news:02e801c1082e$c48e6a30$0100a8c0@piiimonster...
the problem

i have a page that uses a query string to determine content.  ie
index.php?id=2  in this page there is a link to a memebership area that uses
a remote service.  this service requires that thee be the exact same
refering url.  is the refering url must always be index.php.  how can i do
this?  can i do this?







Thank You,

Jon Yaggie
www.design-monster.com

And they were singing . . .

'100 little bugs in the code
100 bugs in the code
fix one bug, compile it again
101 little bugs in the code

101 little bugs in the code . . .'

And it continued until they reached 0






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