Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Read Data From External Page?


I have tried to think of a solution to this problem, but i can't find it. My question is: If possible, how do you from your own page confirm that a form has been send from an external page?




View Complete Forum Thread with Replies

Related Forum Messages:
Read Contents Of An External XML Page And Then Parse Its Contents
I have a URL that generates an XML page. I'm trying to read its contents and parse the information. But, I keep receiving these error messages: Code:

View Replies !
Read External Webpage
I made the folowing script. It works in most cases but not in the one below. I tried several solutions, but I still don't get the content of that website.

<?php
$url="http://www.example.nl/";
aspxerrorpath=/Default.aspx";
$arr =file_get_contents($url);
print($arr);
readfile($url);
$array = file($url);
print count($array);
?>

Who can help?

View Replies !
Fopen And Read An Xml File From External Webpages
Im in the middle of creating a flash movie with various movie clips loading variables from a php file. The problem lies when i try and fopen and read an xml file from external webpages Code:

View Replies !
Getting External Data
I am logged in to Yahoo with my Yahoo ID, and I visit:

http://baseball.fantasysports.yahoo.com with my browser, it will tell me which Fantasy Baseball leagues I am in, and allow me to click on one to enter the league page.

I figured therefore, that if I were already logged in, that the following code, would display the same page (i.e. I would be able to see which leagues I am in):

$remotefile=fopen('http://baseball.fantasysports.yahoo.com/','r');
while (!feof ($remotefile)) {
$line = fgets($remotefile);
echo($line);
}

Unfortunately, the resulting page asks me to sign in, and doesn't display the desired leagues. But I AM still logged in to Yahoo. If I were to try to visit:

http://baseball.fantasysports.yahoo.com again in my broswer, it knows I'm still logged in and displays my leagues.

View Replies !
Get Data From External Site
I have an account with a vendor that list my order info like below:
Is there a way to connect to the site, logon & get the ordernumber &
tracking, load into mysql? Code:

View Replies !
Management Of External Data
I am developing a data exchange format (in XML) to import different external data schemas and sources into a my developped database.

Is it possible to write wrappers in PHP to access different external data sources and extract the schema?

View Replies !
Display External Page
I have a domain e.g. www.example.com and i want to display an external file on that page e.g. http://111.111.111.111/index.php

How can i do that? I tried using fopen...

<?php
//file: www.example.com/getexternalpage.php
$fp = fopen("http://111.111.111.111/index.php", 'r');
echo $fp;
?>

... but i get an error message...

Code:
Resource id #7

Is my code correct? or it doesn't work with echo?

View Replies !
Load External Page
I'm looking for a simple way to load an external web page inside of one of my pages, but it would need to be server-side, as in not frames or anything else client-side.

View Replies !
Querry String With External Data?
What I am trying to do is querry a mysql database, using php but i need the querry to include a outside variable, which is included in the php script. kinda like: if X (from the include file) = Y (in the database)then print Y data. PHP Code:

View Replies !
Reading Data From COM Port (by Using External DLL)
If I have DLL file that give me ability to read data from COM port… Can I link PHP server to it, and then use the classes from that DLL to read data from COM port through web interface? (Something like extended system(); )

View Replies !
Set The Referer URL When Calling An External Page
if it's possible to set the referer URL when calling an external page with this function, and how.

View Replies !
Script To Load External Page
I run 2 websites, on 2 different domains/servers.

I need a php script on server A, which when run will go to server B
at (ex. http://serverB.com/images/counter.gif) and load that image 6
times, then exit.

View Replies !
Loading External HTML File In Every Page
how can I load a HTML into my "every-page" template. Let's say I have a menu (HTML - ul list that becomes a collapsing menu thru CSS) and I want to have it loaded in every page of my site.

View Replies !
Pass The Variable From 1st Page And Read It With Other Name On 2nd Page
I am new to this and learning slowly, but I was hoping someone could give me some quick advice on how to create a variable on one page and have it passed to another to be read as an ID for a mySQL database.

I want to pass the variable "varRevID" from one page and have it read as "reviews_id" on the other.

My database is pulling from just the first record and I would liek to designate from the pointing page which record to pull from.

View Replies !
Getting EXIF Data From External Images (http URLs)
exif_read_data() doesn't support URLs
(http://php.net/manual/en/function.exif-read-data.php ) but I would
like to do that with the minimum traffic and overhead possible.

A naive solution would be downloading the whole target file locally and
then call exif_read_data() but that means a lot of overhead traffic
considering I only want the exif header.

My approach would be getting just the header but

1) Did anyone implement it already?

2) Is it possible? Any suggestions/advices about how to acheive it? (I
know some php but I'm far from being an expert)

View Replies !
Matching External Data With Database For Dynamic Site
I have a  table with 4 columns where I'm showing 900 products, each product in it's own row The first column has the name of the product, that is coming from our database. The next 2 columns are ratings for each product, These ratings are gathered from 2 different external web pages. The reason that this rating are being grabbed from an external page it's because they change and are updated on a daily basis at their respective site.

The last column is a final rating we give to each product based on a calculation of the  2 previous columns. The main idea is that the information updates automatically as the external sites do. The problem is matching the data for each product. Code:

View Replies !
PHP CLI Command Line On Win XP Pro Calling External Page With CURL
I wanted to avoid using VBSCRIPT to process a local script running on a win xp pro box. Being that I know php pretty well, I thought I might try it to solve the problem of not knowing vbscript.

I have it running fine on this machine. even have it so I can just type in the php script name instead of c:/php5/php.exe before the script. Cool stuff.

I need to call a php script on another server when this runs and receive a response. (preferrably using POST). I had a test working with vbscript using MS's XMLHTTP.

Not knowing what else to use. I got a quick test working with cURL but it doesnt seem to like the curl_setopt settings. without them, it calls the page (As GET) and receives a response.

So my question is. is there a better method than CURL to receive a response from a script running on the command line? and how can I get it to use POST if I cant use curl_setopt.

View Replies !
Pass A Variable From The Main Page Into The External Script?
I have a page that calls an external script for processing and I need a variable from the main page to be available in the external script..

Is there a way to pass a variable from the main page into the external script? Or if not, is there a way to make the variable global os something?

View Replies !
Need To Reformat Content Extracted From External Html Page
When I output the extracted content (a html table from an external page) the table is too wide to fit into the design of my site. Is there a way I can tell php to look for width=value and ignore those?

View Replies !
Use The Php Include Command In Source Code To Insert External Page
Hello, i am trying to use the php include command in source code to insert external page when a main page loads, but get the following errors.. can you help?

View Replies !
Is It Possible To Read ASP.NET Web Page In PHP?
Is it possible to read another web page in PHP?
If is ASP.NET, the code would be
------------
WebRequest req=WebRequest.Create("http://www.microsoft.com");
WebResponse res=req.GetResponse();
StreamReader sr = new StreamReader(res.GetResponseStream());
String Output=sr.ReadToEnd();
Response.Write("The content is : " + Output);
--------

View Replies !
Read A Web Page
i want to store(read) the contents of a "web page" into a file. how can i do it in PHP. Please help me. The web page contains a table. i want to fetch & store the contents of that table into a file.

View Replies !
Read Raw Post-Data In PHP
I need to read the RAW DATA that is sent using a HTTP-Post Command in PHP.

I cannot User $HTTP_POST_VARS since the Data is not associated with a particular variable.

View Replies !
CGI (in PHP) Can't Read POST Data
I am trying to have a CGI script write text to a file based on input
from a form. However my write.cgi's $_POST is empty. Whenever I use
write.php for the action of the form $_POST has the correct data.

The form uses POST method. I want to use write.cgi because only cgi
scripts can write to files in my server (run by suexec)

I have been researching this for two days now

View Replies !
Read Out Data From $_GET - But No Name
Just wondering...

would it be possible to read this out:

test.php?444
test.php?test=444

the latter one is correct, but how can I read out a string with no
name?

View Replies !
Read Data From Txt File
I wanted the script which works as a catalogue page but in php and use txt file as a database . Product name and description is stored in txt files . Result should be display as following

Product a
Product description

Product b
Product description

and so on

if pagination in this script is possible so it would be great. The structure of a file will be like this

Product A, Product A description
Product B, Product B description

View Replies !
Read Data From File
I need to read data from text file with 20 lines each line with some text
In the beging I want to read only the first 5 lines, and insert each line content into object. i.e

$line1 = first line
$line2 = secound line.......

Can someone help me with writing the code?

View Replies !
MP3 :: Read The Data From The Idv3 Tag
I have a fairly large music collection in the form of mp3, what i am wanting to do is store all the tracks, albums and artists in a mysql database. Then manipulate to the data to a presentable format. What i wanted is a php script that would be able to read the data from the idv3 tag in mp3 and then input into the mysql database, to save inputing the data.

View Replies !
Can't Read Data From Array
I have a form having a row of three text fields and under this row an add and a remove button are there. I have declared the names of the three text fields as array.

By clicking the Add button a row of these three text fields are created just under the first row with the help of Java Script and increase with each click. And the remove button remove one row per click.

The problem is when I fill with more than one row and click submit button I cannot get information from the array of the name of those fields other than first row.I have used count() to read. Code:

View Replies !
Read A Web Page And Then Display
I'd like to read a webpage, the parse it and display a small part of
it. Here is what I've tired. It isn't working.

<?php
$handle = fopen("http://www.yahoo.com/", "r");
$contents = fread($handle, filesize($filename));
echo $contents;
?>

View Replies !
Q: Read Text With VBA From A PHP Web-page
I created a page on our intranet that shows a number and that
increases for every time the page is opened. It is similar to a
visitors-counter.
When I look at the page with Internet Explorer it works just fine.

Now I want to read this web-page from a MS-Word macro and include the
number as a company wide unique id in my MS-Word document.
Unfortunately, the PHP script doesn't update the counter when I call
it from my MS-Word macro.

How can I force PHP to update my counter when I call it from a VBA
macro?

I am using the following code:

View Replies !
Read An HTML Page
It may sound kind of crazy, but I'm trying to see if there's a way php code can 'read' contents of a static HTML page and store the contents into a variable. Is it possible? If so, how?

View Replies !
Load Page Then Read
Is there a way to completely load the page of its HTML elements then read all those elements into a string? For example, I have a PHP page that get its HTML content from the database. I want that page to completely loads, ie., get the content from the database, then write all of that page's text and html elements into a string so I can modify it (ie. remove all the links) to display it in another page.

View Replies !
Read Previous Page Url
I have a query regarding browser url.Let me narrate the exact scenario which i need. I would like to expire my session when a person enters different url in the navigator bar other than my url and comes back to my url. For example if i visit example.com and then i type gmail in the same navigator bar and then move back to my url example.com through browserback button then i have to end the session of my client i mean he has no more access to my site. The same scenario is there for icicibank.com. I wanna the code using php and javascript.

View Replies !
Read Page To Variable
I have tried tons of functions but none works the way I want. I have a page foo.php. Then in that I set a couple of variables. Now, if I include foo.inc.php that file can use all of these variables. Code:

View Replies !
Code To Read A Web Page
How can I read another web page in php. I tried:

$url = 'http://www.yahoo.com'
$contents = file_get_contents($url);
echo $contents;

but I get an error: The specified CGI application misbehaved by not returning a complete set of HTTP headers.

View Replies !
Read Meta Data From .mp3 File
I'm trying to read the meta data from an mp3 file. The meta data is NOT ID3. and I will not have admin access to the server to install anything special.

View Replies !
Read Image And Data From Csv File.
I have a csv that has only 2 colums, image url and then a line of text. I'm trying to get the page to read that file but not having much luck!!

<?php

$quote = file('./files.csv');

foreach($quote as $i => $quote_info)
{
    list($image) = explode(',', $product_info);
        list($w, $h) = getimagesize($image);
}

?>

View Replies !
Read Static Data From Php File
I want to make a script that will read the static html of a php file. I tried to do this with file_get_contents, but it read the mysql commands and ended up performing the mysql tasks instead of just reading the static html that is outputted.

View Replies !
Read Table Data Until True
I have to read data from a table until two statements are true. I dont know how to break out of the loop when I find the true statements. Here is the code: PHP Code:

<?php
// set-up database connection
include "db_config.php";
mysql_select_db(iceregen_MStudio);

// check for propper login from users table

$query  = "SELECT  UserID, UserName, password FROM users";
$result = mysql_query($query);

while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{

    if ($row['UserName'] == $LoginName AND $row['password'] == $pword)
    {
echo 'username and password are valid'
    }
else 'Invalid UserName and/or Password'
}

View Replies !
Which Function Do I Need To Read The Page Through Http?
I need read the html page through http and extract the links from it. Which function is better to use for this purpose: fopen() + fread(), file_get_contents(), or fsockopen()?

View Replies !
Page Not Read By Conditional When In Sub Folder
I'm using some php conditionals in included footer.

I identify some pages at the top with -

$page='alt_footer'

then have a conditional in the footer.php, like -

if ($page!='alt_footer') {

All works great, but if I put the page in a sub directory (making path adjustments for the includes), it is not recognized as having $page='alt_footer'

All path relationships between the page (in sub folder) and the includes (in folder at same level as sub folder) work fine, just the conditional (from the include to the page) is not recognized.

View Replies !
Get NuSOAP To Return XML Data Which My Script Can Read
Is it possible to get NuSOAP to return XML data which my script can read though like a normal XML document?

View Replies !
Can't Read Remote Web Page From Local Apache/PHP
I'm trying to read the contents of any Web page on another
host. I'm finding that...

echo file_get_contents( 'http://www.php.net' );

.... works fine if I upload the PHP script to my Web host, and run it
there. But if I run it on my PC, which is running Apache 1.3.33
(Win32) and PHP 5.0.5, then it always times out, and gives me the error
message...

[error] PHP Warning: file_get_contents(http://www.php.net) [<a
href='function.file-get-contents'>function.file-get-contents</a>]:
failed to open stream: A connection attempt failed because the
connected party did not properly respond after a period of time, or
established connection failed because connected host has failed to
respond.

I get the exact same results using...

$fh = fopen( 'http://www.php.net', 'r' ) or die( $php_errormsg );
while (! feof($fh)) {
$page .= fread($fh,1048576);
}
fclose($fh);
echo $page;

Anyone know what could cause this to happen?

View Replies !
Read Data From MS Access Into MySQL In Real-time
I am currently working on a project that involves reading information from a inventory system into Access via ODBC and display the info on the web site using MySQL.

I would like to create a live link between the MS Access(local) and MySQL (remote) whenever the inventory system is updated MySQL will be updated as well.

I know that MyODBC will let me do the opposite of what I would like to accomplish by reading data in MySQL into Access. Is it possible to do the reverse way.

View Replies !
Read Data From A Table In Pdf File And Store It To Database
I have to populate MySQL database where data will come from a PDF file. This PDF file has a well formatted table and I have to make a similar replica of the table data into MYSQL Database. Is that possible at all?

View Replies !
Read Csv File And Import Data Into Multiple Tables
I want to know , is it possible to read csv file and import data into multiple tables in mysql database. i mean i am not familiarwith csv files. Can the csv files contain data from multiple tables just like .sql file.

View Replies !
Read An Excel .xls File And Import The Data To MySQL
I am looking for a way to read an Excel .xls file and import the data to MySQL. I do not want to go the route of exporting the data to .csv or .txt.

View Replies !
Read The Page Of The Site & Rerturn The Contents Of MEMBERS_URL & MEMBERS_NUMBER
a line on my site reads MEMBERS_URL="my2ndsite.com" MEMBER_NUMBER="12345" . Im Trying to read the page of the site & rerturn the contents of MEMBERS_URL & MEMBERS_NUMBER, but i cant get it to work can anyone suggest where ive gone wrong please PHP Code:

$myfile = file("http://www.mysite.com");
foreach ($myfile as $row=>$data) {
if (preg_match('/MEMBERS_URL="(.*?)" MEMBERS_NUMBER="(.*?)"/',$data)) {
echo $data[1];
echo $data[2];
}
}

View Replies !
Simulate Send Data With POST And Get Data From A Web Page (whith A Session)
I'd like to get text of a webpageB that I reach by putting
a login and a password in a webpageA.

I mean:
I'd like to get text of a WebPageB with a php script.
But before I can see WebPageB I have to autenticate myself
in a WebPageA writing my login and my password in a form,
the host recognise me and (by session) let me see the WebPageB.

The question is:
1)how to simulate send data (login an password) in form with a PHP script?
2)how to navigate in a Web usin the same session?

View Replies !
When A Search Engine Spiders A Page Does It Read The Raw Code Or The Parsed Html?
When a search engine spiders a page does it read the raw code or the parsed html? I ask as I want to confirm if any text retrieved from a database is 'read' not the php code that gets the data.

View Replies !
Build A Page That Takes Form Data, Processes It In A Second Page
I'm trying to build a page that takes form data, processes it in a second page, then sends the user to a third,depending on data processing.

On the second page, I am trying to get the page to have some sort of "Loading" message while the backend processes the data, but I can't seem to get anything to work. Does anyone know how I can get that Loading message to display?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved