Jump to content

need solution in this script


doforumda

Recommended Posts

hi

 

i have following script and i want to a problem in it. the problem is when this page first loads it displays this error

`Notice: Undefined index: page in D:\wamp\www\dynamic\index1.php on line 26`

and then it displays the content in home.php which is in else statment. this only occurs when the page loads for the first time. after that if i click any link it works fine.

 

<body>
<table width="70%" align="center">
<tr>
    	<td>
        	<h1>My Web Page</h1>
        </td>
    </tr>
</table>
<table width='70%' align="center">
<tr>
	<td width="13%" valign="top" align="left">
        	<b>
            <a href="index1.php?page=home">Home</a><br>
           	<a href="index1.php?page=tutorials">Tutorials</a>
          </b>
      </td>
      <td width="87%" align="left">
        	<?php
				if($_GET["page"])
				{
					$page = $_GET["page"];
					include($page.".php");
				}
				else
				{
					include("home.php");
				}

		?>      
       </td>
</tr>
</table>
</body>

 

how this problem can be removed.

Link to comment
Share on other sites

change to

 

<body>
<table width="70%" align="center">
   <tr>
       <td>
           <h1>My Web Page</h1>
        </td>
    </tr>
</table>
<table width='70%' align="center">
   <tr>
      <td width="13%" valign="top" align="left">
           <b>
            <a href="index1.php?page=home">Home</a><br>
              <a href="index1.php?page=tutorials">Tutorials</a>
          </b>
      </td>
      <td width="87%" align="left">
           <?php
               if(isset($_GET["page"]))
               {
                  $page = $_GET["page"];
                  include($page.".php");
               }
               else
               {
                  include("home.php");
               }
            
         ?>     
       </td>
   </tr>
</table>
</body>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.