Jump to content

PHP form/echo - simple - please help


Ducky1

Recommended Posts

I've just started learning PHP. Ive probably made a -really- simple mistake here (i suspect formatting in the echo). Im trying to post information from a form to the script, and just get it to simply echo the results. Ive checked form input id's and names... thanks for your help in advance:

 

<?php

$parameter1 = $_POST["parameter1"];

$parameter2 = $_POST["parameter2"];

echo $parameter1 " - " $parameter2;

echo "END";

?>

Link to comment
https://forums.phpfreaks.com/topic/148058-php-formecho-simple-please-help/
Share on other sites

<?php

$parameter1 = $_POST["parameter1"];

$parameter2 = $_POST["parameter2"];

echo $parameter1 " - " $parameter2;

echo "END";

?>

 

you forgot the contactinator ( . )

 

here try this:

 

<?php

$parameter1 = $_POST["parameter1"];

$parameter2 = $_POST["parameter2"];

echo $parameter1 ." - ". $parameter2;

echo "END";

?>

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.