very important

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
adelezz
Forum Newbie
Posts: 3
Joined: Wed Apr 06, 2005 5:32 pm

very important

Post by adelezz »

i need any thing that looks like xmlhttp ; xmlhttp used in asp and javascript. the idea from this com is that ,from the server you can send a request for a web page and receive it as a string. ex: .asp page on a server will send "http://www.google.com" then it will receive the main page of google.com and keep this html code in a string. so you can edit this code, then you can echo this html code to your user.
does any one know anything looks like this in php.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

xmlhttp has nothing to do with php. It's a client-side browser object. PHP is processed server-side (right now.)

If you're talking more about php fetching a page and fiddling with it.. that's been talked about far too many times here. Search.

file_get_contents().


by the way, "very important" tells us nothing. Please work on your topic titles. Your urgency means relatively nothing to us.
adelezz
Forum Newbie
Posts: 3
Joined: Wed Apr 06, 2005 5:32 pm

Post by adelezz »

you don't know xmlhttp in asp is not my problem.
ex:
http://www25.brinkster.com/adelezz/xmlhttp/geturl.html
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

I think you need to read the documentation on the function I just gave you.
adelezz
Forum Newbie
Posts: 3
Joined: Wed Apr 06, 2005 5:32 pm

Post by adelezz »

ok thx anyway
Post Reply