Forum Moderators: coopster
I have a script that completes a mysql query and displays all the information & all works fine
The problem im having is that i only want it to display the information i tell it too ie...
there are 3 people with an age of 40 and the rest with various other ages, can someone point me in the right direction to get the script to display only those who are 40 & ignore the rest
many thanx
Something like this is what you want:
SELECT * FROM table WHERE age = '40'
Check out the MySQL manual for more information:
[dev.mysql.com...]
dc