Ask Your Question
2

How can I display an entire page using an else statement in PHP?

asked 2023-06-22 00:04:12 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-06-22 00:25:01 +0000

ladyg gravatar image

To display an entire page using an else statement in PHP, you can use a combination of HTML and PHP code. Here's an example:

<?php
    $loggedin = true; // Example variable

    if ($loggedin) {
        echo "Welcome, you're logged in!";
    } else {
        ?>
        <!DOCTYPE html>
        <html>
            <head>
                <title>My Page Title</title>
            </head>
            <body>
                <h1>Welcome to my website</h1>
                <p>Please log in to access this page</p>
            </body>
        </html>
        <?php
    }
?>

In this example, if the $loggedin variable is true, the code will display a simple message. If the $loggedin variable is false, the code will display an entire HTML page with a heading and a paragraph of text. The <?php and ?> tags allow you to switch between PHP and HTML code within the same document.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-22 00:04:12 +0000

Seen: 8 times

Last updated: Jun 22 '23