drop down php/mysql | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| |
Hi all,
This is my first attempt at anything to do with php/mysql so any help will be greatly appreciated.
I have been set a challenge to come up with a web app to enable staff to log on to the page, select their name in a drop down box and then set their current location and time due to leave that location. Then press submit to update their record on staff database.
So far I have gotten any names in database loaded into a drop down box and have 2 further text fields to enter in location and time details. Finding a time function is for another day!
here's my code: -
<html>
-
<?php
-
$connection = mysql_connect("localhost", "root", "");
-
if(!$connection)
-
{
-
die("database failed " . mysql_error());
-
}
-
$db_select = mysql_select_db("staff_status", $connection);
-
if(!$db_select)
-
{
-
die("database selection failed " .mysql_error());
-
}
-
echo $db_select;
-
?>
-
-
<form>
-
<select>
-
<?php
-
$sql="SELECT id,staff_name FROM status_staff";
-
$result =mysql_query($sql);
-
while ($data=mysql_fetch_assoc($result))
-
{
-
echo ("<option value=".$data['id'].">". $data['staff_name']."</option>");
-
?>
-
<?php } ?>
-
</select>
-
</form>
-
<form action="drop.php" method="post">
-
-
-
<br>
-
Location:
-
<input type="text" name="location">
-
<br>
-
Time Leaving:
-
<input type="text" name="time">
-
<br>
-
<input type="Submit">
-
-
</html>
-
So far so good but for the life of me I can't find a tutorial to show me how to handle the selection. What I want this app to do is update the record of the person selected with the inputted location and time overiding the last input they did.
Any pointers please?
|  | Moderator | | Join Date: Jun 2007 Location: York, England, with wolves.
Posts: 4,936
| | | re: drop down php/mysql
Ok, the MySQL will need to be an UPDATE query. You will also need to know how to get the selected value of the dropdown (I will explain that below). However, currently, looking at your form, there is a problem: you <form> has no action or method. Not a huge issue, but it is good practice to tell your form what you want it to do. I expect the form is posting to the same page, but I don't know whether you plan on using GET or POST (or if you even know about those?). I'll assume you will use POST. Make your <form> into this: -
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
-
Now when the form is submitted, all the values of the form will be in the POST array, which we can access by using the name attribute of the form elements as the array key, like so: -
<?php
-
-
echo $_POST['element_name'];
-
-
?>
-
Overlooking your code again, I see your <select> has no name attribute - this is necessary. Otherwise, the element's value won't be available in the POST array. So add name="user" to your <select>. Note: you will have to have a name attribute for every form element.
Check this tutorial out, for help with forms & php: PHP Tutorial - Forms |  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql Quote:
Originally Posted by Markus However, currently, looking at your form, there is a problem: you <form> has no action or method. Not a huge issue, but it is good practice to tell your form what you want it to do. it's a POST to "drop.php", line 28. there's just one <form> too many.
btw. "action" is a required attribute
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
so is the code so bad that it can't be made to work?
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql
if you apply Markus' improvements, then certainly not.
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
Thanks Dormilich for swift reply
Here is code with suggestions added: -
<html>
-
<?php
-
$connection = mysql_connect("localhost", "root", "");
-
if(!$connection)
-
{
-
die("database failed " . mysql_error());
-
}
-
$db_select = mysql_select_db("staff_status", $connection);
-
if(!$db_select)
-
{
-
die("database selection failed " .mysql_error());
-
}
-
echo $db_select;
-
?>
-
-
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
-
<select name="user">
-
<?php
-
$sql="SELECT id,staff_name FROM status_staff";
-
$result =mysql_query($sql);
-
while ($data=mysql_fetch_assoc($result))
-
{
-
echo ("<option value=".$data['id'].">". $data['staff_name']."</option>");
-
?>
-
<?php } ?>
-
<?php
-
-
echo $_POST['staff_name'];
-
-
?>
-
</select>
-
</form>
-
<form action="drop.php" method="post">
-
-
-
<br>
-
Location:
-
<input type="text" name="location">
-
<br>
-
Time Leaving:
-
<input type="text" name="time">
-
<br>
-
<input type="Submit">
-
-
</html>
-
-
I know I'm out of my depth here but if I was to get it working I could understand/learn from reading the working code.
Any further instructions please?
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql
there's still work to do...
minor details:
- line 23, you should html-quote the attribute values - echo '... value="' . $var . '" ...';
-
// or
-
echo "... value=\"" . $var . "\" ...";
-
// giving
-
... value="content_of_$var" ...
- line 24–26, replace by } (the <?php and ?> remove themselves)
major details:
- the values from the first form are never sent (there's no submit button for that form). you should make only one <form> which will process the results. I guess it's the second one. remember, only the values from inside the <form> are submitted (you may have multiple form elements on a side, but only the one whose submit is pressed actually sends data).
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
thanks again but just don't understand what you are saying to do.
I have never asked anyone on the site to show me with my variables, but I just don't think ill get it any other way.
If you can't do that for me, thanks again, I'll just stick to java!
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql
in the end, the html code should look like this (more or less): - <html>
-
-
<form action="drop.php" method="post">
-
<select name="user">
-
<option value="ID1">NAME1</option>
-
<option value="ID2">NAME2</option>
-
<option value="ID3">NAME3</option>
-
// ...
-
</select>
-
<br>
-
Location:
-
<input type="text" name="location">
-
<br>
-
Time Leaving:
-
<input type="text" name="time">
-
<br>
-
<input type="Submit" value="send">
-
</form>
-
-
</html>
in the final version, drop lines 13 and 28 (this is nothing for the eyes of the user, only for debugging)
the file "drop.php" has to handle the database update.
EDIT: the problem of your code does not come from the PHP side, it's the HTML code that's not right.
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
Dormilich, thank you! I now know what the meaning of the word post means!
So after a bit of copying and pasting (and learning) I have 2 files which look like they should do what im trying.
here's insert1.php -
<html>
-
<?php
-
$connection = mysql_connect("localhost", "root", "");
-
if(!$connection)
-
{
-
die("database failed " . mysql_error());
-
}
-
$db_select = mysql_select_db("staff_status", $connection);
-
if(!$db_select)
-
{
-
die("database selection failed " .mysql_error());
-
}
-
echo $db_select;
-
?>
-
-
<form action="insert2.php" method="post">
-
<select name="user">
-
<?php
-
$sql="SELECT id,staff_name FROM status_staff";
-
$result =mysql_query($sql);
-
while ($data=mysql_fetch_assoc($result))
-
{
-
echo ("<option value=".$data['id'].">". $data['staff_name']."</option>");
-
?>
-
</select>
-
<br>
-
Location: <input type="text" name="location">
-
Time Leaving: <input type="text" name="time">
-
-
<input type="Submit">
-
-
-
-
</form>
-
</html>
-
I have tried to stay with importing the names from database to show in dropdown box as this was working and has been my only success today:(
Here's insert2.php -
-
<?php
-
-
$connection = mysql_connect("localhost", "root", "");
-
if(!$connection)
-
{
-
die("database failed " . mysql_error());
-
}
-
$db_select = mysql_select_db("staff_status", $connection);
-
if(!$db_select)
-
{
-
die("database selection failed " .mysql_error());
-
}
-
echo $db_select;
-
-
$name = $_POST['staff_name'];
-
$location = $_POST['location'];
-
$time = $_POST['time'];
-
$query2 = "INSERT INTO status_staff VALUES ('$name','$location','$time')";
-
mysql_query($query2);
-
mysql_close();
-
?>
-
Am i getting closer to the concept of html/php/mysql?
Edit:
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql Quote:
Originally Posted by brendanmcdonagh Am i getting closer to the concept of html/php/mysql? yes Quote:
Originally Posted by brendanmcdonagh - echo ("<option value=".$data['id'].">". $data['staff_name']."</option>");
this could be improved to - echo "<option value=\"", $data['id'], "\">", $data['staff_name'], "</option>";
(printing " to the html too and executing a bit faster) Quote:
Originally Posted by brendanmcdonagh Here im getting a parse error on line 30 which no matter what i do won't go away but I think it's a syntax error more than me not having a clue !! which is line 30, the display is currently a bit strange here....
EDIT: fixed now, I'll have a second look
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
sorry, ignore line 30 error, i was looking at wrong page, doh!
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql Quote:
Originally Posted by brendanmcdonagh - $name = $_POST['staff_name'];
should be
second, but nonetheless important: never trust user input! never! you can sanitize the input using mysql_real_escape_string() | | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
I can't thank you enough, I have it doing what it should!!!!!!!!!! |  | Moderator | | Join Date: Jun 2007 Location: York, England, with wolves.
Posts: 4,936
| | | re: drop down php/mysql
I go out to walk the dog, and I come back to another happy customer.
Brendan, just a note, you should really check out these sites (they helped me from n00b to being able to basic-intermediate stuff). Introduction to PHP PHP Tutorial - Introduction | | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
thanks for them sites, i 'll get some more education I just sometimes go into stuff feet first!
I have one more request for help on this thread... -
<form action="insert2.php" method="post">
-
<select name="user">
-
<?php
-
$sql="SELECT id,staff_name FROM status_staff";
-
$result =mysql_query($sql);
-
while ($data=mysql_fetch_assoc($result))
-
{
-
echo "<option value=\"", $data['id'], "\">", $data['staff_name'], "</option>";
-
}
-
?>
-
<br>
-
Location: <input type="text" name="location">
-
<br>
-
Time Leaving: <input type="text" name="time">
-
-
<input type="Submit">
-
my understanding is the above form is sending 3 variables to.... -
$name = $_POST['user'];
-
$location = $_POST['location'];
-
$time = $_POST['time'];
-
$query2 = "update status_staff set staff_location = $location, set time_leaving = $time where staff_name = $name";
-
-
mysql_query($query2);
-
But it's not adding the input. I know it's talking to database because before i tried update i had insert working but don't want duplicates.
Anyone got any time left to help me finish this last thing>?
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql
according to the manual ( MySQL :: MySQL 5.1 Reference Manual :: 12.2.11 UPDATE Syntax) you need only one SET command. second, your input is neither quoted (necessary for strings) nor escaped (mysql_real_escape_string(), remember?)
|  | Moderator | | Join Date: Jun 2007 Location: York, England, with wolves.
Posts: 4,936
| | | re: drop down php/mysql
When it comes to writing queries, the best way to do it (for readability's sake) we capitalise any reserved words (UPDATE, SET, INSERT, etc), use back-ticks (`) on table names, column names, etc.
Like this: -
SELECT
-
`Column_Name`
-
FROM
-
`Table_Name`
-
WHERE
-
`Column_4` = '{$var}'
-
Off-topic, but I think it deserves a mention.
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,635
| | | re: drop down php/mysql
@Markus: backtick is unicode number 96 (U+0060) ?
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
done some troubleshooting and i can see what is causing the problem but can't see the solution. - while ($data=mysql_fetch_assoc($result))
-
{
-
echo "<option value=\"", $data['id'], "\">", $data['staff_name'], "</option>";
I ve done an echo of the $name variable once the following has been assigned - $name = $_POST['staff_name'];
and it's showing as empty but the other variables posted are being sent across??
| | Familiar Sight | | Join Date: Nov 2007
Posts: 153
| | | re: drop down php/mysql
done it guys, thanks for all your help.
Brendan
|  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,327 network members.
|