an excerpt from my statpanel.php:( ! ) Notice: Undefined index: pclass in C:\wamp\www\HPMMORPG\statpanel.php on line 4
Call Stack
# Time Memory Function Location
1 0.0115 399624 {main}( ) ..\battle.php:0
2 0.0239 423720 include_once( 'C:\wamp\www\HPMMORPG\statpanel.php' ) ..\battle.php:32
Code: Select all
<div id="lpanel">
<?php
echo "<u><b> " . $playerinfo3['name'] . "</b></u><br>";
echo $playerinfo3['pclass'] . "<br>";
//////////////new for 17
echo "Level " . $playerinfo3['level'] . "<br>";
echo "Attack = " . $playerinfo3['attack'] . "<br>";
echo "Defense = " . $playerinfo3['defense'] . "<br>";
echo "Hit Points<br>";
echo "Spell Points<br><br>";
echo "<b><big><u>Gold</u></big></b><br>";
echo $playerinfo3['gold'];
?>
<?php
echo "<br><br>";
echo "<a href='equipment.php'>Equipment<br></a>";
////////////////////////new for video 17////////////////
echo"<br>";
$expneeded = ($playerinfo3[level] * 100) * $playerinfo3[level];
if ($playerinfo3[exper] >= $expneeded)
{ echo "<br><a href='levelup.php'>Level Up!!</a>";}
?>
</div>
( ! ) Notice: Use of undefined constant level - assumed 'level' in C:\wamp\www\HPMMORPG\statpanel.php on line 22
Call Stack
# Time Memory Function Location
1 0.0115 399624 {main}( ) ..\battle.php:0
2 0.0239 423720 include_once( 'C:\wamp\www\HPMMORPG\statpanel.php' ) ..\battle.php:32
all of those have to do with the statpanel.php, and the excerpt i provided has all of the said problemed lines in it, please help!( ! ) Notice: Use of undefined constant exper - assumed 'exper' in C:\wamp\www\HPMMORPG\statpanel.php on line 23
Call Stack
# Time Memory Function Location
1 0.0115 399624 {main}( ) ..\battle.php:0
2 0.0239 423720 include_once( 'C:\wamp\www\HPMMORPG\statpanel.php' ) ..\battle.php:32