Jump to content

[SOLVED] I'm Stuck Please help


rockindano30

Recommended Posts

Well, I have a little problem here. I am working on a web app. the point of this database app is to keep track of employees and their keys assigned to them. It lists all employees and their keys they are assigned and what doors they open (departments). now i have three tables:

 

employees(emp_id, Fname,Lname,email,dept_id)

departments(dept_id,dept,phone)

emp_keys(k_id,emp_id,key_num, accss)

 

now i have a problem with displaying all records on employees table. there are around thirty employees and only displays half of that. everything else that i want it to do works just fine except that. here is code of where i display all records:

 

<?php
				$emp_id=$_GET["emp_id"];

				//get the mysql and store them in $result
				//change whatevertable to the mysql table you're using
				//change whatevercolumn to the column in the table you want to search
				$query = "SELECT employees.emp_id,Fname,Lname,email,dept,key_num,accss FROM emp_keys, departments, employees WHERE departments.dept_id=employees.dept_id and emp_keys.emp_id=employees.emp_id order by departments.dept";

				$result = mysql_query($query);

				//grab all the content
				while($r=mysql_fetch_array($result))
				{	
				   //the format is $variable = $r["nameofmysqlcolumn"];
				   //modify these to match your mysql table columns
				   $dept=$r["dept"];
				   $asscc=$r["accss"];
				   $Fname=$r["Fname"];
				   $Lname=$r["Lname"];
				   $email=$r["email"];
				   $key_num=$r["key_num"];
				   $emp_id=$r["emp_id"];
				?>
              <table width="100%" border="0" cellpadding="1" cellspacing="0" class="table1">
                <tr>
                  <td width="14%"><font face="Arial, Helvetica, sans-serif"><?php print $dept; ?></font></td>
                  <td width="17%"><font face="Arial, Helvetica, sans-serif" style="color:#CC6600"><?php print $Fname." ".$Lname; ?></font></td>
                  <td width="28%"><font face="Arial, Helvetica, sans-serif"><?php print $email; ?></font></td>
                  <td width="10%"><font face="Arial, Helvetica, sans-serif"><?php print $key_num; ?></font></td>
                  <td width="50%"><font face="Arial, Helvetica, sans-serif"><?php print $asscc; ?></font></td>
                  <td width="50%">
                  <?php print"<a href='delete.php?emp_id={$emp_id['emp_id']}'>Remove</a><br />";?>
                  </td>
                </tr>
              </table>
            <?php
}//end while loop
?>
            <?php
}
?>

here it is

 

<table width="100%" border="0" cellspacing="0" cellpadding="1"><form method="post" action="searchemps.php">
  <tr>
    <td colspan="4"><font style="font-size:12px; color: #000000">Type in name of employee to search:</font></td>
  </tr>
  <tr>
    <td width="22%"><font style="font-size:12px; color:#000000">First Name: </font></td>
    <td width="29%"><input type="text" name="search" size=15 maxlength=25></td>
    <td width="21%"><font style="font-size:12px; color:#000000">Last Name:</font></td>
    <td width="28%"><input type="text" name="search2" size=15 maxlength=25></td>
  </tr>
  <tr>
    <td colspan="2"><input type="Submit" name="Submit" value=" " style="background:url(images/searchbutton.png) no-repeat center; height:35px; width:70px; border:0px; cursor:pointer" />
        </form></td>
    <td colspan="2"><form method="post" action="allKeys.php">
          <input type="submit" name="vall" value=" " style="background:url(images/viewallbutton.png) no-repeat center; height:35px; width:70px; border:
          0px; cursor: pointer" />
        </form>
</td>
  </tr>
</table>    </div>
      <div class="p" style="clear:both">
        <div align="center">
            <?php
					if(!($db = @ mysql_connect('server', 'username', 'password')))
					{
						echo 'Error: Could not connect to our database sorry for any inconvience.<br /> Please try at a later time.';
						exit;
					}

					 //select which database you want to edit
					mysql_select_db("db name); 

					$vall=$_POST["vall"];
					if(!isset($vall) || empty($vall))
					{
						print"<p>No employees in Database.";
					}
					else{

				$emp_id=$_GET["emp_id"];

				//get the mysql and store them in $result
				//change whatevertable to the mysql table you're using
				//change whatevercolumn to the column in the table you want to search
				$query = "SELECT employees.emp_id,Fname,Lname,email,dept,key_num,accss FROM emp_keys, departments, employees WHERE departments.dept_id=employees.dept_id and emp_keys.emp_id=employees.emp_id";

				$result = mysql_query($query);

				//grab all the content
				while($r=mysql_fetch_array($result))
				{	
				   //the format is $variable = $r["nameofmysqlcolumn"];
				   //modify these to match your mysql table columns
				   $dept=$r["dept"];
				   $asscc=$r["accss"];
				   $Fname=$r["Fname"];
				   $Lname=$r["Lname"];
				   $email=$r["email"];
				   $key_num=$r["key_num"];
				   $emp_id=$r["emp_id"];
				?>
              <table width="100%" border="0" cellpadding="1" cellspacing="0" class="table1">
                <tr>
                  <td width="14%"><font face="Arial, Helvetica, sans-serif"><?php print $dept; ?></font></td>
                  <td width="17%"><font face="Arial, Helvetica, sans-serif" style="color:#CC6600"><?php print $Fname." ".$Lname; ?></font></td>
                  <td width="28%"><font face="Arial, Helvetica, sans-serif"><?php print $email; ?></font></td>
                  <td width="10%"><font face="Arial, Helvetica, sans-serif"><?php print $key_num; ?></font></td>
                  <td width="50%"><font face="Arial, Helvetica, sans-serif"><?php print $asscc; ?></font></td>
                  <td width="50%">
                  <?php print"<a href='delete.php?emp_id={$emp_id['emp_id']}'>Remove</a><br />";?>
                  </td>
                </tr>
              </table>
            <?php
}//end while loop
?>
            <?php
}
?>

 

this is the code

He erased it for privacy... o-o

 

And change:

$result = mysql_query($query);

To:

$result = mysql_query($query) OR die(mysql_error());

 

Secondly, please give me an example row from each table so I can see the relationship better.

now i have a problem with displaying all records on employees table. there are around thirty employees and only displays half of that. everything else that i want it to do works just fine except that. here is code of where i display all records:

 

$query = "SELECT employees.emp_id,Fname,Lname,email,dept,key_num,accss FROM emp_keys, departments, employees WHERE departments.dept_id=employees.dept_id and emp_keys.emp_id=employees.emp_id";

 

 

 

Just for you know, you are not displaying All records on the Employees table, you are displaying the ones that match your SELECT statement.

 

Now granted if that statement does in fact match all of your records then they all should show, but chances are it's a problem in your query.

k heres an example:

 

Department    |      Employee name    |    email                  |  key_num    |  access    |    remove

-------------------------------------------------------------------------------------------

Public      Roxy Gomez      [email protected]          08998  blank        Remove

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.