Jump to content

Taking content from other pages...


Tandem

Recommended Posts

I'm trying to implement part of a web page, into one of my own webpages.


More detail:
https://daopay.com/svc/numgen?appcode=41970&orderno=yes&format=hash&country=GB&price=1.0

from that page, i want to implement the "orderno" into a page of my own. Is this possible? and how?

Note: i have no control over the page at the above URL, but the layout of it will not change.

Thanks in advance for any help.

Link to comment
https://forums.phpfreaks.com/topic/21319-taking-content-from-other-pages/
Share on other sites

It would depend as he said, where the database is stored, if it's in the database
$select = "SELECT * FROM tablename WHERE column = 'value';";
$query = mysql_query($select);
if ($row = mysql_fetch_array($query)) {
echo $row['whatever'];
}
that will show just one thing, not the best script but it was written hastilly.
I'm going to attempt to re-explain.

https://daopay.com/svc/numgen?appcode=41970&orderno=yes&format=hash&country=GB&price=1.0

I want to be able to display number after "orderno=" onto one of my webpages. The number changes every time you load the page, and sometimes changes in length too.

Is it possible to somehow grab it from this page and put it onto my page?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.