passing variables between different scripts
Posted: Wed Sep 01, 2004 3:54 pm
Hi,
I'm doing my first steps with php so I need some help finding my mistake.
I wrote a html-file with the following line to pass the value to an php-script
file.html
....
<a href="answer.php?article=table">table</a>
my php script looks like:
<?
echo $article;
?>
I get an the erromessage: Undefined variable articel in answer.php
Some ideas?
Thanks Tom
I'm doing my first steps with php so I need some help finding my mistake.
I wrote a html-file with the following line to pass the value to an php-script
file.html
....
<a href="answer.php?article=table">table</a>
my php script looks like:
<?
echo $article;
?>
I get an the erromessage: Undefined variable articel in answer.php
Some ideas?
Thanks Tom