Jump to content

[SOLVED] passing forms value problem


Recommended Posts

My html file contains:

<form action="http://localhost/genealogy/testitem.php" method=post>

<input type="text" name="mysubmission" size ="10" maxlength="3">

<input type="submit" value="Submit">

</form>

 

My php file contains:

<html>

<head>

  <title>MyPage</title>

</head>

<body>

<h1>MyPage</h1>

<?php

  // create short variable names

  $mytitle=$HTTP_POST_VARS['mysubmission'];

echo $mytitle.'is my title';

?>

 

</body>

</html>

 

When I click the Submit button, the php page comes up with MyPage at the top and a line "is my title" on the second line, but there are no values passed to $mytitle.

 

It works fine if I ftp it to HostMonster.  Is there a configuration setting that I need to change?

 

Thanks in advance for any help.

Ron Dahl

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/177977-solved-passing-forms-value-problem/
Share on other sites

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.