Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 04-17-2003, 05:37 PM   PM User | #1
weronpc
Regular Coder

 
Join Date: Apr 2003
Location: Canada, Ontario, Mississauga
Posts: 312
Thanks: 0
Thanked 0 Times in 0 Posts
weronpc is an unknown quantity at this point
Error

I installed php, mysql and aparche 2.0

for some reason, I get this message when I use $_POST[delete] and $_GET[delete]. (delete is the name of a submit button)

Notice: Use of undefined constant delete - assumed 'delete' in C:\user\share\public\web\developer\guest_book\guest_modify.php on line 16

everything works fine, just keep getting this message.

line 16
if ($_POST[delete]){

Thank you,

Mike
weronpc is offline   Reply With Quote
Old 04-17-2003, 06:02 PM   PM User | #2
beetle
Senior Coder

 
Join Date: Aug 2002
Posts: 3,467
Thanks: 0
Thanked 0 Times in 0 Posts
beetle has a little shameless behaviour in the past
The error message tells you exactly what it's looking for

Notice: Use of undefined constant delete - assumed 'delete' in C:\user\share\....

if ( $_POST['delete'] ) {

You must lookup those members as a string, unless already inside a literal string, where you should remove them

echo ( "The value for delete is $_POST[delete]" );


__________________
My Site | fValidate | My Brainbench | MSDN | Gecko | xBrowser DOM | PHP | Ars | PVP
“Minds are like parachutes. They don't work unless they are open”
“Maturity is simply knowing when to not be immature”
beetle is offline   Reply With Quote
Old 04-17-2003, 06:17 PM   PM User | #3
weronpc
Regular Coder

 
Join Date: Apr 2003
Location: Canada, Ontario, Mississauga
Posts: 312
Thanks: 0
Thanked 0 Times in 0 Posts
weronpc is an unknown quantity at this point
Thank you

Another notice message

Notice: Undefined index: mode in C:\user\share\public\web\developer\guest_modify.php on line 46

Line 46: if($_GET['mode'] == 'update'){

Thanks

Mike
weronpc is offline   Reply With Quote
Old 04-17-2003, 06:18 PM   PM User | #4
beetle
Senior Coder

 
Join Date: Aug 2002
Posts: 3,467
Thanks: 0
Thanked 0 Times in 0 Posts
beetle has a little shameless behaviour in the past
Try this
PHP Code:
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'update' ) { 
__________________
My Site | fValidate | My Brainbench | MSDN | Gecko | xBrowser DOM | PHP | Ars | PVP
“Minds are like parachutes. They don't work unless they are open”
“Maturity is simply knowing when to not be immature”
beetle is offline   Reply With Quote
Old 04-17-2003, 06:23 PM   PM User | #5
weronpc
Regular Coder

 
Join Date: Apr 2003
Location: Canada, Ontario, Mississauga
Posts: 312
Thanks: 0
Thanked 0 Times in 0 Posts
weronpc is an unknown quantity at this point
It works

Thank you so much, you are great help

Can you explain why it wasn't working before?

I want to know learn....
weronpc is offline   Reply With Quote
Old 04-17-2003, 06:25 PM   PM User | #6
duniyadnd
Regular Coder

 
Join Date: Jun 2002
Location: Depends on the time of year
Posts: 478
Thanks: 0
Thanked 0 Times in 0 Posts
duniyadnd is an unknown quantity at this point
You were missing the single quotes around the variables inside the square brackets. An error if you calling in something that wasn't defined in the first place.

Duniyadnd
duniyadnd is offline   Reply With Quote
Old 04-17-2003, 06:29 PM   PM User | #7
beetle
Senior Coder

 
Join Date: Aug 2002
Posts: 3,467
Thanks: 0
Thanked 0 Times in 0 Posts
beetle has a little shameless behaviour in the past
Well, again the error says it all

Undefined index: mode

That means the index 'mode' wasn't defined in the $_GET array at all. Since it's not defined, you can't check it's value and thus get that error.

You first need to see if it exists, which isset() is used for.
__________________
My Site | fValidate | My Brainbench | MSDN | Gecko | xBrowser DOM | PHP | Ars | PVP
“Minds are like parachutes. They don't work unless they are open”
“Maturity is simply knowing when to not be immature”
beetle is offline   Reply With Quote
Old 04-17-2003, 06:37 PM   PM User | #8
duniyadnd
Regular Coder

 
Join Date: Jun 2002
Location: Depends on the time of year
Posts: 478
Thanks: 0
Thanked 0 Times in 0 Posts
duniyadnd is an unknown quantity at this point
OOOooops... missed that part..



Thanks Beetle
duniyadnd is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:52 AM.


Advertisement
Log in to turn off these ads.