I'm basically checking a users download limit in my database, and if their limit is < 1 I want to disable a input on my page.

<input type="text" name="link"<?php ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />

When the page is run, the input is not disabled and I don't have any disabled="1" markup on my page. I have verified that $page["downloads_left"] is less than 1, and it is. It's 0.

Even when I add a string to be outputted if this IF statement evaluates false, it doesn't show in the markup.

Can anyone provide any help? Cheers.

link|improve this question

57% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You need to place an echo in the line:

<input type="text" name="link"<?php echo ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />
link|improve this answer
feedback

Don't forget the echo after <?php.

link|improve this answer
feedback

You have to echo it

<?php echo ($page['downloads_left'] < 1) ? " disabled='1' " : ''?>
link|improve this answer
feedback

<?php ($page...

should be

<?php echo ($page...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.