I have never done this before and after looking up in the archives i'm at a loss to see where ive gone wrong. Basically im trying to check if a variable $score is between 30-60 to give feedback:
can anyone see where im going wrong:
if ($score <= 30) { echo 'If you scored less than 30 then you almost certainly have no need to implement a full quality system. You could, however, look at setting up a limited number of procedures. Look at the ‘First Steps’ leaflet in this pack and contact your local CVS for advice on policies and procedures, and how to source them.';}
if ($score >= 30 || <= 60) echo 'If you scored between 30 and 60 points then you should definitely have a comprehensive range of policies and procedures in place. If your organisation is liable to undergo growth in the near future, these policies and procedures should be designed around the requirements of a quality system in order to save time later. Look at the ‘Quality System Comparison Chart’, have a preliminary read through the summary sheets for the most widely used systems, then contact your local CVS for additional sources of help and advice';
if ($score >= 60) echo 'If you scored more than 60 and don’t have any quality systems in place, then your organisation will almost certainly benefit from looking at which ones best suit your requirements. Look at the ‘Quality System Comparison Chart’, have a preliminary read through the summary sheets of the most widely used systems, then contact your local CVS for additional sources of help and advice';
the error message reads parse error: unexpected T_IS_SMALLER_OR_EQUAL