Re: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread Sam Lai
On 12 October 2010 22:56, sami nathan wrote: > Hello sir, > I need to display the reult of >           "http://m.broov.com/wap/di/sub?word=dog=00=Submit; > in my url which is > http://localhost/flip/wap/di/sub?word=dog=00=Submit > My view looks like this > from django.http

Re: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread sami nathan
Hello sir, I need to display the reult of "http://m.broov.com/wap/di/sub?word=dog=00=Submit; in my url which is http://localhost/flip/wap/di/sub?word=dog=00=Submit My view looks like this from django.http import * from django.template import loader, Context from django.shortcuts import

Re: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread sami nathan
Hello sir, I need to display the reult of "http://m.broov.com/wap/di/sub?word=dog=00=Submit; in my url which is http://localhost/flip/wap/di/sub?word=dog=00=Submit My view looks like this from django.http import * from django.template import loader, Context from django.shortcuts import

Fwd: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread sami nathan
-- Forwarded message -- From: sami nathan <itssami.g...@gmail.com> Date: Tue, Oct 12, 2010 at 3:37 PM Subject: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL To: django-users@googlegroups.com  i want to send my req from my url that is"http://localhost/flip/wap/

Re: WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread bruno desthuilliers
Please DONT SHOUT. Thanks. On 12 oct, 12:07, sami nathan wrote: >  i want to send my req from my url that > is"http://localhost/flip/wap/di/sub?word=formula=00=Submit; Your proper url is "http://localhost/flip/wap/di/sub;. The remaining part ("?word=formula=00=Submit")

WANT TO SEND REQ TO URL GET RESPONSE FROM THE SAME URL

2010-10-12 Thread sami nathan
i want to send my req from my url that is"http://localhost/flip/wap/di/sub?word=formula=00=Submit; that i want to send only the word "formula" to the url "http://m.broov.com/wap/di/sub?word=fomula=00=Submit"and i want to get response from the same url and display in my page my view looks like