Ask a Question related to PHP Development, Design and Development.
-
linux newbie #1
problem to get data from a form (method=get)
i am using redhat8 with default php installed, the problem i am facing
is that:
#test.php
<?php
echo $test_value;
?>
localhost/test.php?test_value=abc
whatever values i try, php can't get my values passed by get or direct
url passing. do you have any ideas about that problem? thanks :)
linux newbie Guest
-
Is creationComplete=method() or initialize=method() theright solution for such kind of problem or ...?
Hi everybody, I am using web service in my flex application and I want to visualize some data from collection of objects taht I receive from my Web... -
Dynamic form to create pie chart - problem reprentingthe data not selected by user
I have created a pie chart based on what a user select on a form. For example, a user can select from a list of species they want to view a pie... -
problem displaying class method returns in form elements
Just come across this annoying problem -- Including a line such as <INPUT type="text" name="whatever" value = "<?php print @$myclass.value?>" >... -
problem posting data from asp form
I am running IIS5, Win2k Server, and .Net Framework 1.1. For some reason asp forms will not post data. So I have a form with a text box. The... -
problem with a mysql query with data from a form
hi, i am a newbie to php and mysql, i run the easyphp kit ( php 4.2.0, Mysql 3.23.49 and phpmyadmin 2.2.6 ) i would like to use a select *... -
Andy Barfield #2
Re: problem to get data from a form (method=get)
linux newbie wrote:
<?php> i am using redhat8 with default php installed, the problem i am facing
> is that:
>
> #test.php
> <?php
> echo $test_value;
> ?>
>
> localhost/test.php?test_value=abc
>
> whatever values i try, php can't get my values passed by get or direct
> url passing. do you have any ideas about that problem? thanks :)
echo $_GET['test_value'];
?>
Look up register_globals in the manual
Andy Barfield Guest
-
linux newbie #3
Re: problem to get data from a form (method=get)
Andy Barfield wrote:
yes, i can do it in that way, but why i can't get value directly by that> linux newbie wrote:
>>>> i am using redhat8 with default php installed, the problem i am facing
>> is that:
>>
>> #test.php
>> <?php
>> echo $test_value;
>> ?>
>>
>> localhost/test.php?test_value=abc
>>
>> whatever values i try, php can't get my values passed by get or direct
>> url passing. do you have any ideas about that problem? thanks :)
>
> <?php
> echo $_GET['test_value'];
> ?>
>
> Look up register_globals in the manual
variable name? because it is working in other redhat apache?
linux newbie Guest
-
linux newbie #4
Re: problem to get data from a form (method=get)
Andy Barfield wrote:
> linux newbie wrote:
>>>> i am using redhat8 with default php installed, the problem i am facing
>> is that:
>>
>> #test.php
>> <?php
>> echo $test_value;
>> ?>
>>
>> localhost/test.php?test_value=abc
>>
>> whatever values i try, php can't get my values passed by get or direct
>> url passing. do you have any ideas about that problem? thanks :)
>
> <?php
> echo $_GET['test_value'];
> ?>
>
> Look up register_globals in the manual
thank you very much :)
linux newbie Guest
-
William Maddler #5
Re: problem to get data from a form (method=get)
on Monday 13 September 2004 15:46 linux newbie was babbling of...
mainly security reasons... this will avoid passing vars directly to the> yes, i can do it in that way, but why i can't get value directly by that>> Look up register_globals in the manual
> variable name? because it is working in other redhat apache?
script overriding script's values...
--
William Maddler
[url]http://www.personepigre.it[/url]
[url]http://www.maddler.net[/url]
William Maddler Guest



Reply With Quote

