/    Sign up×
Community /Pin to ProfileBookmark

Why we use this statement on the bottom of many php scripts

Why we use this statement on the bottom of many php scripts

[code=php]<?php } ?>[/code]

what does meaning of this?

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@BMR777Jan 14.2015 — The way that is written it makes me think that the author of the PHP script started an IF check, then switched over to HTML to display the results. They would need to add the closing bracket in order to have their PHP script compile.

So, your script might be something like this:

[code=php]<?php
$username = "Bob";

if($username == "Bob"){

?>

<p>Hey there Bob</p>

<?php
}
else {
?>

<p>You are not Bob!</p>

<?php } ?>[/code]


As you can see, I mixed HTML content in with PHP content without using the traditional echo statement of PHP, but I need the closing } at the end to close the else statement of the if.
×

Success!

Help @csofts spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.6,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...