proxy Programming Software Development by ub007 … eth0:3. so i need to be sending a Get requet via the proxy server to the URL( [url]www.example… Re: Most efficient "real-time" system. Socket Server or Client Queries Programming Web Development by digital-ether … to the system.[/QUOTE] This cannot be achieved with a requet/response system. You need a system that sleeps waiting for… Re: HTTP "get" & "post" method requests. How to understand them? Programming Software Development by masijade With a post requet you simple feed the var=value&var=value String through into the output stream. Re: PHP MySQL Select Drop Down Menu Programming Web Development by metalix ….php?var=value test a couple of values the ajax requet might be calling (the second select menu) and see if… Re: Using VB.NET to query MS Access Database Programming Software Development by JSS at MSSU … might give to a local table of the rows your requet has retrieved, while n is the number of rows retrieved… Re: How do I delete my DaniWeb Account? Community Center Meta DaniWeb by antenore … and not the contrary, so at any moment you can requet to be removed from any database (except the police DBs… GET , POST and REQUET not working Programming Web Development by arajapandi Hi , I installed apache,php, mysql ( [url]https://help.ubuntu.com/community/ApacheMySQLPHP[/url] ) After installing when i submit the form i can't get the form values. all values r empty. plz help me to resolve this problem? Re: GET , POST and REQUET not working Programming Web Development by ShawnCplus You might want to show us some code, and use code tags when you do Re: GET , POST and REQUET not working Programming Web Development by arajapandi Hi, Thanks for your reply. plz check the below simple code.. i can't get values from $_POST & $_REQUEST [CODE]<?php print "<pre>"; print_r($_POST); print_r($_REQUEST); print "</pre>"; print "<form action='' method='post'> <input type='text' name='inputname'> <input … Re: GET , POST and REQUET not working Programming Web Development by PoA You need to insert url for form action. [CODE=php]<?php print "<pre>"; print_r($_POST); print_r($_REQUEST); print "</pre>"; print "<form action='<destination-url>.php' method='post'> <input type='text' name='inputname'> <input type='submit' name='test'>… Re: GET , POST and REQUET not working Programming Web Development by arajapandi Yes. i tried it too, but no luck. Re: GET , POST and REQUET not working Programming Web Development by PoA Copy the following code into the file called "sample.php" It should work. [code=php] <?php print "<pre>"; print_r($_POST); print_r($_REQUEST); print "</pre>"; print "<form action='sample.php' method='post'> <input type='text' name='inputname'> <… Re: GET , POST and REQUET not working Programming Web Development by xuexue here, try this sample... ********this is your index.php [code=html]<form action="welcome.php" method="post"> Name: <input type="text" name="fname" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> [/code] *******this one's … Re: GET , POST and REQUET not working Programming Web Development by arajapandi Thanks xuexue,PoA and ShawnCplus. I think the problem was php/apache. i re-installed php and apache. now everything is working. Re: proxy Programming Software Development by EAnder You should be able to do that with any http proxy server...You just need to send the correct request. I know get is to get a certain page on a site, but you could hack to gether a program that simulates entering in a textbox (when you enter a textbox (like the one im doing right now) when you press enter your browser sends a request also sending …