Hey all,
iam new at PHP and i have a question.
I do a select-query in mysql.
$sql = "SELECT name, street, city, y,m,d, email FROM player WHERE `name`= '".$name."' or `city`= '".$city."' or `y`= '".$y."'";
The result i paste in a table like this.
while($row = mysql_fetch_array($result)) {
....
echo '<td><input name="check" type="checkbox"><br /></td><td>'.$row["name"].'</td><td>'.$row["street"].'</td><td>'.$row["city"].'</td><td>'.$row["d"].'.'.$row["m"].'.'.$row["y"].'</td><td>'.$row["email"].'</td>';
You can see, that i create a checkbox at the beginning. I want to check if the checkbox is checked and after that i want to press a button for insert the other information like name,street ... in the database.
Sorry for my english guys :(
I hope you can understand my problem..