$_GET help...

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
pleigh
Forum Contributor
Posts: 445
Joined: Wed Jan 19, 2005 4:26 am

$_GET help...

Post by pleigh »

i have an excerpt of my code here...

in the viewform code, i have an edit link and the code is like this

Code: Select all

$editquery = "SELECT userID, projectID FROM projects WHERE userID='$uid' AND projectID='$id'";
$editresult = @mysql_query($editquery) or die(mysql_error());
if (mysql_fetch_assoc($editresult))
{
   $edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
}
else
{
   $edit = '&nbsp;';
}
then in my edit page

Code: Select all

$id = $_SESSION['userID'];
$eid = $_GET['eid'];

if (isset($_POST['submit']))
{
...some codes here...
}
then i have a database query

Code: Select all

$query = "UPDATE posts SET projecttitle='$pt', companyrole='$r', location='$l', description='$d', 
		objective='$o', justification='$j', startdate='$sd', enddate='$ed', leadfirm='$lf', cosponsoringfirm='$csf', 
		delegateddepartment='$dd', assignedperson='$ap', type='$t', category='$c', contactperson='$cp', 
		expectedresult='$er', userID='$id', postupdate=NOW() WHERE userID='$id' AND projectID='$eid'";
		$result = @mysql_query($query) or die(mysql_error());
now the problem is that when i click the submit button, an error occured
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
line 9 is the code above,in the edit page -->$eid = $_GET['eid'];
my impression with this is that if the index eid is undefined, by the time i click the edit, it will prompt me that eid is undefined, but in this case, it validates the value of eid then the edit page loads....unfortunately, by the time i click the submit/update button, the quoted error above appears...

hope someone can point me where to modify the code...

thanks in advance..:)
User avatar
phpScott
DevNet Resident
Posts: 1206
Joined: Wed Oct 09, 2002 6:51 pm
Location: Keele, U.K.

Post by phpScott »

you have your $_GET[] in the wrong place try:

Code: Select all

$id = $_SESSION['userID'];

 
if (isset($_POST['submit']))
{
if(isset($_GET['eid'])
  $eid=$_GET['eid'];
else
  $eid= $somedummyvalue;
...some codes here...
}
User avatar
harrisonad
Forum Contributor
Posts: 288
Joined: Fri Oct 15, 2004 4:58 am
Location: Philippines
Contact:

Re: $_GET help...

Post by harrisonad »

pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
[quote:c;quote;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
;quote; class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined indexT['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote:c27511a17"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!p;quote;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET[$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does! ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quotendex: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!hp]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!1a17c]
//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exiwwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!1]
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['T['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!ote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote:c27511a17>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!c]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eimy edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!/php]
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!7c]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!efined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!t.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!ot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/qump;amp;lt;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT&lt;/a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] doesmp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid inp;amp;gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!ct\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!p;amp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!"pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't realref="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote:c2a17c]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!27511a17c]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!gt;EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Not1111;'pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
[quotrojectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does! 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does! in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_mp;quote; class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!amp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!it.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projecteT['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]it = '<a href="projectedit.php?eid='.$_GET['pid'].'&quote; class=under&gt;EDIT&lt;/a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
[qdit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['piproject\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!amp;lt;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!7511a17c]
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!]
//...
$eid = $_GET['eid'];
Notice: Undefi.
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/t;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] doen my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
[/php="projectedit.php?eid='.$_GET&#1111;'pid'].'&quote; class=under&gt;EDIT&lt;/a&gt;';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!amp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!p;amp;gt;EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!17c]
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!quote;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined indep;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does!
User avatar
pleigh
Forum Contributor
Posts: 445
Joined: Wed Jan 19, 2005 4:26 am

Re: $_GET help...

Post by pleigh »

harrisonad wrote:
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does!
i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt..."pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i pedit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem ?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,uote;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projected"harrisonad"][quote="pleigh"]

Code: Select all

// ...
$edit = '&lt;a href=&quote;projectedit.php?eid='.$_GET&#1111;'pid'].'&quote; class=under&gt;EDIT&lt;/a&gt;';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on th"harrisonad"]
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...m

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
[/phphref="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also g]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayamp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined,e5a7a8a63]
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...n in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and tfined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...]
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i prce5a7a8a63]
//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...
i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the firs"harrisonad"]
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenprojectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...3="pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on thr>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...a63="pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,gettin

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
[/php:1:ce;lt;/a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really uphp on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it tolt;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...uote="pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt... index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, thamp;lt;/a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and thene5a7a8a63]
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under&gt;EDIT&lt;/a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt..ass=under>EDIT</a&gt;';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt..."harrisonad"]
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined functimp;amp;gt;EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then c'pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original valueue of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edeid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt... class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt..."harrisonad"]
pleigh wrote:

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded/ ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getti7a8a63="pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...ctedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
[/php:1:ce5a7aamp;quote; class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the updatee;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...3="pleigh"]

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a&te; class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as <a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...the]
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate ithp?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page andlass=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt;lt;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinkiuote;projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GE
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it fro

Code: Select all

// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original vap;lt;a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=undeder>EDIT</a>';
// ...
then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in mydex: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...
// ...
$edit = '<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>';
// ...

then in my edit page

Code: Select all

//...
$eid = $_GET['eid'];
Notice: Undefined index: eid in c:\inetpub\wwwroot\project\projectedit.php on line 9
[/quote]

$_GET['eid'] doesn't really exists, $_GET['pid'] does![/quote]

i'm getting the value of eid from

Code: Select all

<a href="projectedit.php?eid='.$_GET['pid'].'" class=under>EDIT</a>
the value of pid, i'm also getting it from another page and then concatenate it to eid...i want to retrieve the result of the concatenation here...

the problem in my case is that the edit page is loaded,getting the original values from the database...then as i press the update button,the undefined function error is displayed...in my thinking, when the eid is really undefined, the edit page on the first page will not be loaded and the error will prompt...
Post Reply