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
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.
Link to comment
Share on other sites

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?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.