FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Notice: Undefined index: action error please help
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Notice: Undefined index: action error please help [message #175393] Tue, 13 September 2011 20:51 Go to previous message
Konstantinos is currently offline  Konstantinos
Messages: 1
Registered: September 2011
Karma:
Junior Member
Hello,
i have and index.php file which i have a menu and i want to unclude
some others file in it, using some parameteres passed from the url.
But i am getting an error "Notice: Undefined index: action.... in line
etc"

Heres my code:
....
<div class="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="index.php?action=store">Store</a></li>
<li><a href="index.php?action=profile">Profile</a></li>
</ul>
</div>
....

in another line inside the same index.php file i have:
....
<?php
if ($_GET['action']=="profile")
include("profile.php");
else if ($_GET['action']=="store")
include("store.php");
else if ($_GET['action']=="login")
include("user_login_form.php");
else
echo "Welcome screen";

?>
....

When i am in the home address i get an error "Notice: Undefined index:
action" for all 3 lines i use $_GET['action']. When i click on the
other links eg store or profile the include is being done
successfully.

What am i doing wrong??

Thanks in advance
Kostas
[Message index]
 
Read Message
Read Message
Previous Topic: Social Bookmarks Script
Next Topic: date parsing
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Nov 12 20:16:23 GMT 2024

Total time taken to generate the page: 0.04283 seconds