Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Coldfusion functions in PHP

Status
Not open for further replies.

ScanX

Programmer
Oct 13, 2003
26
BE
Hello,

I would like to know if it's possible to use (call) coldfusion functions in PHP scripts.

Those cf functions are written and stored in separated files located on another server.

Thanx in advance for help
 
AFAIK, you cannot do that. They're two different server-side languages and you cannot mix them together. What does the cf function do? If you only need it to output something you could try outputting the coldfusion file that calls the function within an image on the site. Just a thought.
 
actually I have to integrate an SMS "spam" service on the website I'm working on (so people receive some informations on their GSM).

Another company delivers that "SMS spamage" service.
I have to use their WebServices so users of the website can register to that SMS option. The WebServices are written in ColdFusion and my website is written in PHP.

Basically I have to call a function using their WebServices to get a token and call another function providing the token, gsm number and text to send the SMS.

So my question is, how to call those WebServices functions in my PHP code ?
 
That is simply a matter of writing PHP code that takes your user's input and passes it on to the company's web site.

You might take a look at faq434-2502.


Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top