Jump to content

Rysavy

New Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Rysavy

  1. Hello everybody,
    I have a really annoying Problem, I was looking so much in the Internet but nothing seems to work.  So heres my Problem:

    When I want to link a .css stylesheet to my index.php file its working ,BUT if I want to use a second .css file for my Aboutme.php page  somehow it never recognizes it. But when i use the Css for index.css Its working. Really weired . I can only use one .css stylesheet and I dont know why, I have checked the paths so often, I dont have folders, it is all in htdocs folder the css files, the  php files.

    please help. It really drives me crazy.

    Thank you so much,

    Denis Rysavy

    About me.php

    index.php

    styling.css

    stylingAboutme.css

  2. hello,
    I have a similar isue, my code looks like this

    <!DOCTYPE html>
    <html>
    <head>
        <title>first php</title>
    </head>
    <body>
        <h1>The first php ever</h1>

    <form method="POST" action="php-response.php">

                Name: <input type="text" name="name">

                <br>

                Password: <input type="password" name="password">

                <br>

                <input type="submit">
    </body>
    </html>

     

    and my response code

    <!DOCTYPE html>
    <html>
    <head>
        <title>php response</title>
    </head>
    <body>
    <h1>PHP Form Processing</h1>

            <?php

            

            echo "The name entered: " . $_GET["name"];
            echo "<br>The password entered: " . $_GET["password"];

            ?>
    </body>
    </html>

    greetings from Germany.


     

×
×
  • Create New...