A community of PHP developers offering assistance, advice, discussion, and friendship.
Skip to content
Moderator: General Moderators
Post by speedy33417 » Thu Sep 28, 2006 8:59 am
Code: Select all
$album = $_GET['album']; if ($album = "") { $album = "main"; }
Post by JayBird » Thu Sep 28, 2006 9:05 am
if(empty($_GET['album'])) $album = "main"; else $album = $_GET['album'];
Post by speedy33417 » Thu Sep 28, 2006 9:10 am
Return to “PHP - Code”