Jump to content

[SOLVED] I'm Stuck Please help


rockindano30

Recommended Posts

Skittalz, no offense, but please stop giving him bad advice. =X

while($r=mysql_fetch_array($result)) is how it should be done.

 

 

Now, rockin, please show me the output of this query in the MySQL client just so I can look at the example values:

 

SELECT d.*, k.*, e.* FROM employees as e, departments as d, emp_keys as k LIMIT 1 \G

 

 

Just put that query in and show me the entire output.  Thanks.

Link to comment
Share on other sites

 

mysql> SELECT d.*, k.*, e.* FROM employees as e, departments as d, emp_keys as k LIMIT 1 \G;

*************************** 1. row ***************************

dept_id: 1

  dept: City Manager's

  phone: 383-1800

  k_id: 1

emp_id: 1

key_num: 3456

  accss: data room, office

emp_id: 1

dept_id: 1

  Fname: Danny

  Lname: Vera

  email: dvera@ci.edinburg.tx.us

1 row in set (0.00 sec)

 

ERROR:

No query specified

 

mysql>

Link to comment
Share on other sites

<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 e.*, k.*, d.dept FROM employees as e, emp_keys as k, departments as d WHERE e.emp_id = k.emp_id AND d.k_id = k.k_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

}
?>

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.