PHP include tag not displaying file data
So I have a welcome page here that includes a php include tag.
welcome.php
 <html>
    <head>
        <title> Web Application</title>
        <link rel="stylesheet" type="text/css"
href="extjs/resources/css/ext-all.css">
        <link rel="stylesheet" type="text/css"
href="css/welcome_stylesheet.css">
        <script type="text/javascript" src="extjs/ext-debug.js"></script>
        <script type="text/javascript" src="welcome.js"></script>
    </head>
    <body id="welcome">
        <div id="container">
            <p id="welcome_page_h1">Welcome</p>
                <div id="select_container">
                    <?php include("stuff.php"); ?>
                </div>
        </div>
    </body>
    </html>
And here's thee php file I am trying to include/display.
stuff.php:
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
I feel like all my ducks are in order here, but nothing shows. Any ideas?
 
No comments:
Post a Comment