Search Results

4
votes
3answers
548 views

Full-text search relevance is measured in?

I am making a quiz system, and when quizmakers insert questions into the Question Bank, I am to check the DB for duplicate / very highly similar questions. Testing MySQL's …
3
votes
4answers
2k views

PHP: Right way to declare variable before use in loop

I have a variable that is built in loop. Something like: $str = ""; for($i = 0; $i < 10; $i++) $str .= "something"; If $str = "" is ommitted, I get undefined va …
1
vote
3answers
122 views

MySQL field management

When I make a query, I often wonder about this: Is it better to add extra field(s) to the table, or just get the values and calculate in your server side language? …