why every query do I make in php to my database end up with a blank page??
please help
If your PHP returns a blank page, it is because of one of two things:
1) There is a problem in your PHP code that either returns no errors/warnings, or your server is not displaying that level of error/warning.
2) Your PHP code works correctly, but does not output something.
You can't just query the database and expect it to throw up results for you. You also have to take those results and format them, then output them to the screen in some way.
Comment