Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Promoted
What code structure in PHP could you use to check for a condition that exists in a single page element?
What code structure in PHP could you use to check for a condition that exists in a single page element?
1 Answer
Relevance
- Anonymous9 years agoFavorite Answer
To check a php variable?
on a windows server I use
if (isset($myvariable)){ // do this ...}
on linux
if ($myvariable){ // do this ...}
Source(s): http://php.net/manual/en/function.isset.php
Still have questions? Get your answers by asking now.