you can use implicit outer join, or write the join, which matches best.
implicit would look like this:
SELECT * FROM student, score, weekt where student.sid=score.sid and score.case_no=weekt.case_no and weekt.weekid='1' order by score.sid, score.case_no, score.scoreid;
try it out with phpMyAdmin, before you use it in your code.
BTW: you should never use select * - better use explicit fieldlist.
Even when you are requesting all fields, performance will be much better.
And if you join tables, with * you receive all joined fields twice - once from one, and another time from the other table

- this does not realy make sense, just for saving a few seconds typing
