English 中文(简体)
Send JSON from php processes to public Cruelfusion page
原标题:Send JSON from php processing to public coldfusion page

我正在修改某人现有的冷藏网络。 我正在增加处理网站,以完成各项任务。 直到这一点为止,我刚刚把“网址”的网页连接起来,并且通过“月球”通过变数与网站链接。

目前的使用:

public.cfm calls processing.php?id=69

然后处理工作也会做些什么,最后是:

header("Location: $publichome?id=$id&importantstuff=$stuff");
exit();

网上浏览也将在网上查阅。 但是,现在我的文字之一必须寄回一名JSON物体,而不是简单的变数。 我不知道如何做到这一点。 我试图用URL做一个职务,但那是徒劳无功的,因为我需要面对冷聚页的公众接手,并将治疗性回报回馈回给“php”的文字(我知道,我可以重复曲折的体体,但这把我保留在I dont所希望的网址上)。 是否有办法处理上述标题,并发送物体,因为我需要的是,即:实验室文件停止,冷聚页与物体一起工作。

Do I have to create some sort of JSON service in php, that the coldfusion page will call an retrieve the result? I can also modify the coldfusion page any way I want.

最佳回答

你们应该能够把json的扼杀作为URL变量,就像你通过更简单的扼杀一样,通过地点负责人。 如果你已经这样做的话,那么你将需要一些手段,使该物体在实验室中扎根。 可能有一个可供使用的json图书馆。

edit Based on more information, I now have a better suggestion:

从社会结构来看,形成一个“带;cfhttp>”;请您的公共卫生和社会福利部编码,通过所有必要的参数,作为参考书的论据。 从PHP,简单地说,“产出”是JSON作为反应机构。 在吉大港定居人士联盟要求返回该联合会之后,你可以通过手提网站与JSON联系。 卷宗号变量,然后可以通过德斯海泽斯登运行,以收回一个真实物体。 下面是部分CF代码样本:

<cfhttp url="processing.php?id=69" method="get"></cfhttp>
<cfset importantStuff=DeserializeJSON(cfhttp.fileContent)>
问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签