Got setup simple database for learning. Got data inserted. Now im trying make show that data that fulfills criterion is only displayed. Like i select in forms age 33 and male. Then only male that age are 33 are showed. i managed get working script that works only with one criterion.

 <?php
$rass = $_POST["rass"];
$rinnad = $_POST["rinnad"];
$connect = @mysql_connect ("localhost", "root", "") or die("Fail!!!! :D:D:D");
mysql_select_db("tibid") or die("selline andmebaas puudub");
$query = mysql_query("SELECT * from test where rass = '{$rass}'");
$num_rows = mysql_num_rows($query);
if($num_rows > 0){
    {while($row = mysql_fetch_assoc($query))        
        echo 
        $row['rinnad']. "<br>"
        .$row['juuksed']."<br>"
        .$row['silmad']."<br>"
        .$row['rass']."<br>"
        .$kood['kood']."<br>
        <hr>
        ";}
    }else{ 
echo "Andmebaas on tühi";
    }
?>

Thank you.

link|improve this question

75% accept rate
The code you are using is vulnerable to SQL injection. In general, I think you should work through a fundamental PHP/database tutorial first. Most of the questions you ask are covered by the basic learning materials. This question links to some that look good: stackoverflow.com/questions/3166644 – Pekka May 1 '11 at 8:07
also Material to learn PHP – Pekka May 1 '11 at 8:08
feedback

1 Answer

Take a look at the top two examples here:

http://php.net/manual/en/function.mysql-real-escape-string.php

The first example shows you how to use two conditions separated by 'AND' in an SQL statement.

Importantly, the second example will show you the perils of using unsanitised/unsafe strings in your database queries and how to avoid SQL injection attacks.

Thirdly, have a laugh:

http://xkcd.com/327/

:D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.