Jump to content

[SOLVED] Referencing another file is leaving a blank screen


phpfanphp

Recommended Posts

When I input data, it brings me to a blank screen. 

I think PHP, Apache, and MySQL are set up right because I can run SIMPLE scripts that don't reference other files.

Any ideas?

 

Here is the HTML file:

<html>

<body>

  <h2>Search for a shop</h2>

 

  <br>

      <FORM ACTION="123.php" METHOD="POST">

      Please enter the name, or part of the name, of the shop you are seeking:

      <br>

        <INPUT NAME="name" TYPE=TEXT>

      <br>

        <INPUT TYPE=SUBMIT VALUE="Search!">

      </FORM>

 

</body>

</html>

 

The PHP file, 123.php, located in the same directory:

<?php

echo $name;

?>

Wow fast responses!  Ok, I changed the 123.php file to

 

<?php
  if (isset($_POST['name'])) {
    echo $_POST['name'];
  }
?>

 

but now firefox asks me if I want to download the file 123.php when I hit submit.  Any ideas??

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.