473,386 Members | 1,841 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

execute a remote file before including it.

I'm trying to modify a banner display function so it can be including
on remote websites. If I just include the file from a remote website
the code isn't executed before it is put into the page. I would like
my code (which picks a random banner) to execute on the remote site so
when I include it a random banner show up.
Jul 16 '05 #1
7 5089
Nick Messick wrote:
I'm trying to modify a banner display function so it can be including
on remote websites. If I just include the file from a remote website
the code isn't executed before it is put into the page. I would like
my code (which picks a random banner) to execute on the remote site so
when I include it a random banner show up.


???

You cannot of course.

How would you feel when I started executing MY PHP-code on your server?
If you want some code executed on another machine, contact its owner...

Regards,
Erwin

Jul 16 '05 #2
Organization: College of Computing, Georgia Tech

Erwin Moller <> wrote:
Nick Messick wrote:
I'm trying to modify a banner display function so it can be including
on remote websites. If I just include the file from a remote website
the code isn't executed before it is put into the page. I would like
my code (which picks a random banner) to execute on the remote site so
when I include it a random banner show up.

??? You cannot of course. How would you feel when I started executing MY PHP-code on your server?
If you want some code executed on another machine, contact its owner...


lets the owner of the other machine does not have a problem with me running
a script on his server and then displaying the output on my server..

how would I do it then??
Jul 16 '05 #3

On 9-Sep-2003, Erwin Moller
<si******************************************@spam yourself.com> wrote:
Nick Messick wrote:
I'm trying to modify a banner display function so it can be including
on remote websites. If I just include the file from a remote website
the code isn't executed before it is put into the page. I would like
my code (which picks a random banner) to execute on the remote site so
when I include it a random banner show up.


???

You cannot of course.

How would you feel when I started executing MY PHP-code on your server?
If you want some code executed on another machine, contact its owner...


What you can do is execute the php on your server to modify the banner and
return it as an image.

The remote server would pass HTML to the client like
<img src="http://yourserver.com/banner.php">
The client browser would make the request to your server where the php code
would return the appropriate headers and the image data.
--
Tom Thackrey
www.creative-light.com
Jul 16 '05 #4
Message-ID: <gg***************@newssvr29.news.prodigy.com> from Tom
Thackrey contained the following:
The remote server would pass HTML to the client like
<img src="http://yourserver.com/banner.php">
The client browser would make the request to your server where the php code
would return the appropriate headers and the image data.


Is there any way of doing this so that it returns code instead of an image?
(to create an embedded guest book or something)

--
Geoff Berrow
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jul 16 '05 #5
You can sort of do what you're after...

<script language="javascript" type="text/javascript"
src="http://yourserver/script.php"></script>

This tag is put on the remote website. script.php should do whatever
work you want it to do, then send HTML output wrapped in
document.write() functions. I.E. script.php would return something
like:

document.write('Look at this!<br>');
document.write('<img src="http://someserver/someimage.jpg">');

And that code would be run by the user's browser in place where you
had the <script> tag on the page on the remote website. Can give you
an example if you need one. :)
Jul 16 '05 #6

"Nick Messick" <no****@trendwhore.com> wrote in message
news:24**************************@posting.google.c om...
I'm trying to modify a banner display function so it can be including
on remote websites. If I just include the file from a remote website
the code isn't executed before it is put into the page. I would like
my code (which picks a random banner) to execute on the remote site so
when I include it a random banner show up.


I've read the history - you could do two things... one, have your chap who
has the PHP server create the banner in to a 'javascript' type file - That
way, from the remote server, you only have to include, and execute the
javascript

Alternativly, you could use an html <iframe> tag and just call the page from
their server thus giving you full forms access without changing the address
bar (which I gather is one of your issues).
Jul 16 '05 #7
Matt <go****@mralston.com> wrote:
document.write() functions. I.E. script.php would return something
like: document.write('Look at this!<br>');
document.write('<img src="http://someserver/someimage.jpg">');


what If I want to return a php function, which the user can use on his page.
Basically, I want to give only certain users access to this one function.
So I want to authenticate them before they run that function, the only
problem being that authentication needs to be done on the main machine and
not where the user is using the function. Thus, I want the users to include
this one file, which is running on the main server, and if they authenticate
right, I return the function. Also, this authentication needs to be automatic
i.e. on a script to script level, not a human to html page level.

any idea how??

Jul 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: JimA | last post by:
I have an application that needs to execute dtsrun from a remote machine. Basically I have a batch file on the remote box, which handles the execute. This works fine on a machine with client tools...
5
by: Phil Grimpo | last post by:
I have a very odd situation here. I have an administration page, where based on a users permissions, a recordset is called from the SQL server which has a list of paths to "Module Menus". Each of...
4
by: Phil Grimpo | last post by:
I had previously explained this problem in a different thread, but now that I have an IISState log, I figured I'd re-start the thred. My situation and the log are following... I have a very odd...
4
by: JoelWhitehouse | last post by:
Hi! I want to write a script that will read a .php file on a remote server and print to the current page a portion of the text contained in the remote file. I am just wondering what the best...
0
by: xixi | last post by:
hi, we are using db2 udb v8.1 on win 64 bit with fp3 with type 4 db2jcc.jar driver. when i execute this query , select id, arno01, arcd01, arno16, artx01, armo09, ardy09, arcc09, aryr09,...
5
by: mayamorning123 | last post by:
A comparison among six VSS remote tools including SourceOffSite , SourceAnyWhere, VSS Connect, SourceXT, VSS Remoting, VSS.NET To view the full article, please visit...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
6
by: Joseph | last post by:
Hi, I am trying to develop a C# application that will run on Windows that will do the following * Select file name to process * FTP the file to a UNIX server * Process this file on UNIX using a...
2
by: Adam | last post by:
On one site I'm working on I occasionally get an error where instead of executing the PHP file as per normal, the browser sees the page as a file (therefore opens up a execute/save pop-up). All...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.