I am trying to check a field in my database to see if it is null. Right now that works and places the text that is in the field otherwise.
However, I need it to link to a zipped file for download if it is available in the database.
This is what I have tried but it says I have errors and I don’t know where they are.
<?php if ($row_rsDetails['Manuals'] == null) {echo 'Please click here and complete the online form. A technician will address your needs as soon as possible. Thank you.';} else {echo "Please click here to download the current manuals;} ?>I appreciate any help.