Search found 3 matches
- Fri Feb 08, 2008 4:39 am
- Forum: Databases
- Topic: DB Abstraction
- Replies: 2
- Views: 288
Re: DB Abstraction
thanks figured it out, thanks for the help arborint problem is solved.
- Mon Feb 04, 2008 12:15 pm
- Forum: Databases
- Topic: Trying to understand multiple table queries...
- Replies: 2
- Views: 266
Re: Trying to understand multiple table queries...
Dont know if i got u right but i would try to use this, lets assume that: content, media, titles are the tables and: subcategories_id, title, location, text, type, id, titles_id are the fields. i would do something like this: SELECT c.*, m.*, t.* FROM content c, media m, titles t WHERE c.subcategori...
- Mon Feb 04, 2008 10:10 am
- Forum: Databases
- Topic: DB Abstraction
- Replies: 2
- Views: 288
DB Abstraction
Hey, i use a file with all my queries but i want to make it even better by making a file called mysql.php which will consist of all the DB select/update/delete/insert function so instead of using in every qurey: $result = mysql_query("SELECT * FROM person");while($row = mysql_fetch_array($...