Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
PHP >> General
Can I use echo inside a ternary expression?
Visitor Ratings (0) :
Description
No.
This is due the fact that echo isn't a function, it's an expression.
so you can't use it precisely like that. Either of the following will
work, however:
Code
Select All
<?php $foo = 1; ($foo == 1) ? print "blip" : print "blop" ; echo ( ($foo == 1) ? "blip" : "blop" ); ?>
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10