$_Get
Posted: Mon Oct 06, 2008 8:37 am
Hi guys! Here's my problem.
I got a file named ADM.php and i use a form like this:
print "<form method='GET' action='Modify.php'>";
print "<input type='submit' name='Add' value='+/-'></input>";
print "<input type='hidden' name='Modify' value=".$Question['QuestionName']."></input>";
$Question['QuestionName'] shows at screen: 'This is a test'
I got an other file (Modify.php) where I'd like to get "This is a test" by $_GET. The problem is that I only get 1 word which is "This". Can someone help me please ?
I got a file named ADM.php and i use a form like this:
print "<form method='GET' action='Modify.php'>";
print "<input type='submit' name='Add' value='+/-'></input>";
print "<input type='hidden' name='Modify' value=".$Question['QuestionName']."></input>";
$Question['QuestionName'] shows at screen: 'This is a test'
I got an other file (Modify.php) where I'd like to get "This is a test" by $_GET. The problem is that I only get 1 word which is "This". Can someone help me please ?