/    Sign up×
Community /Pin to ProfileBookmark

PHP isset problem

Hi, i have this:

[code=php]
if(!$book){
echo “book”
}
[/code]

But i get an error on this..like:
Notice: Undefined variable: book in /www/websites/maakeenseenboek.com/www.maakeenseenboek.com/index.php on line 83

what can i do about it i know what to do when it is a normal script like:

[code=php]
if($book){
echo “book”
}
[/code]

then i can solve it:

[code=php]
if(isset($book)){
echo “book”
}
[/code]

but what to do with the !

thanks in advance

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@shane_carrJun 21.2006 — [code=php]
if(isset($book)){
echo "Book";
}else{
echo "No Book";
}

//or, if you just want to see if it's not set

if(!isset($book)){
echo "No Book";
}
[/code]
Copy linkTweet thisAlerts:
@NogDogJun 21.2006 — I think this might be what you're after...
[code=php]
if(empty($book) {
[/code]

...which is functionally equivalent to...
[code=php]
if(!isset($book) or !$book) {
[/code]
×

Success!

Help @zebdaag 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.20,
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: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

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