post originate from the object inside a form there can be multiple form in a page but only the objects where the form submitted will be sent while get is like...
Different tools for different jobs. GET is useful if you want to be able to copy a dynamic URL (ie, you want to email a friend a link to your favorite book on...
Dear Friends, I want to get/post a URL via a script made in PHP. I know how to do that via PERL ie. through LWP(Library for WWW access in Perl). Is there a...
This is not exactly what i was looking for. I was looking for in simple sense reading a file via internet through http and ftp. Please correct me if i am...
Dear Friends, Can anyone provide me with a script through which we can extract URL and emails from a page/file. I shall be very grateful, Thanks in advance for...
Dear Friends, Can anyone provide me with a CHAT script and a banner management script, I need to integrate that into mine web site with some users already...
Hi to all Will some body send a links of any Good(means easy to use and good in functionality) template Enginf for PHP. I have never tried any one so I want to...
Hi, Sadij Why not test FastTemplate it is free. It is a good example. What do you meen by good in fonctionnality ? Like adding images or "HTML's macros". See...
aj> Dear Friends, aj> Can anyone provide me with a CHAT script and a banner management script, aj> I need to integrate that into mine web site with some users ...
Markus
markus@...
Feb 2, 2005 6:16 pm
1889
Also there can be a restrictive data limit on the size of a GET URL which doesn't apply to POST. Link is old but still generally accurate AFAIK:...
use curl http://ro.php.net/manual/en/ref.curl.php abhishek jain <ejaincom@...> wrote: Dear Friends, I want to get/post a URL via a script made in PHP. I...
... I think that would match the follow string, which isn't an URL: FFFFFreffffhrhrrehehfhfr="""""""j""""""jksdlkfjsd> I think this might work better:...
Hello, ... You may want to try this HTTP client class that does exactly what you ask: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes...
hiii Please see phpclasses.org site you can find many scripts of such types.... bye amit. ... __________________________________ Do you Yahoo!? Meet the...
hi all, does anybody know a method to deactivate/activate all the links in a page? I mean without having to modify each single <a> tag . thanks a lot Oreste...
Oreste Attanasio
attanasio@...
Feb 3, 2005 4:56 pm
1896
Maybe U could manipulate stdout (data of what is send to browser). And juste applies a "regexp". or a "str_replace with regexp" to replace ur href by a # link...
... Code the links using another tag, since there's not much point coding something as a link and then de-activating it. If it's a membership issue, test for...
Tech @ LDS
tech@...
Feb 3, 2005 6:53 pm
1898
hello i want to write this same table through a loop where i have written loop start here and ends here (see below) the loop will get result from the database...
thanks for your help. I'll try and tell you oreste ... --...
Oreste Attanasio
attanasio@...
Feb 4, 2005 8:14 am
1900
Just use in Yours loops after querying with mysql_query . U just have to do a loop with a [...] <tr> <? while($db_line=mysql_fetch_array($resukt_of_db)) { ?>...
yes it's membership issue, but I didn't want to change each tag... I'll do it that way for now, thanks again OA...
Oreste Attanasio
attanasio@...
Feb 4, 2005 11:38 am
1902
... Take a look at ADODB. It doesn't achieve perfect PHP/HTML separation, but I find it much easier to use in templates. The template simply has the table...
Tech @ LDS
tech@...
Feb 4, 2005 1:53 pm
1903
Hi, use the class Snoopy in sourceforge.net. This classes also fetch https/http urls through fsocket open. This class is used to grab urls, Fetch all links...
You could try this. I'm not too sure if it'll work while ($query_detail = mysql_fetch_array($query_string)) { $Value1 = $query_detail["Value1"]; $Value2 =...
hi, In Get method query string is visible and have limited size. In Post method query string not visible and query string can be of any size. santhosam, ssk ...
Hi Oreste, When I have this requirement I output each link from a method. Then, inside the method, is the logic which decides whether the output is a link....
As far as i know, using "include" is just the same way, bcause "include" do read the file u r included and dumb them in a memory as str_replace does. regards, ...