Re: [WebDNA] how can i grab the contents of a post?
This WebDNA talk-list message is from 2011
It keeps the original formatting.
numero = 106728
interpreted = N
texte = This is a multi-part message in MIME format.--------------050205040108060003040307Content-Type: text/plain; charset=ISO-8859-1; format=flowedContent-Transfer-Encoding: 7bitI had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.This could probably be collapsed to two lines but what I have above works and it is good enough :)Psi Prime Inc, Matthew A Perosi wrote:> Since I'm completely ignorant when it comes to PHP, what is the code > you used?> Did you grab the incoming content, save it as a file then had WebDNA > trigger occasionally for the written file?>> Matt>--------------050205040108060003040307Content-Type: text/html; charset=ISO-8859-1Content-Transfer-Encoding: 7bit
I had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.
<?php
if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){
$postText = file_get_contents('php://input');
}
$content = file_get_contents(
"http://www.kanuhawaii.org/ted/parse.tpl?thisxml=".urlencode($postText));
header("Content-type: text/xml");
echo $content;
?>
This could probably be collapsed to two lines but what I have above works and it is good enough :)
<?php
header("Content-type: text/xml");
echo file_get_contents("http://yourserver/parse.tpl?thisxml=".urlencode(file_get_contents('php://input')));
?>
Psi Prime Inc, Matthew A Perosi wrote:
Since I'm completely ignorant when it comes to PHP, what is the code you used?
Did you grab the incoming content, save it as a file then had WebDNA trigger occasionally for the written file?
Matt
--------------050205040108060003040307--
Associated Messages, from the most recent to the oldest:
This is a multi-part message in MIME format.--------------050205040108060003040307Content-Type: text/plain; charset=ISO-8859-1; format=flowedContent-Transfer-Encoding: 7bitI had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.This could probably be collapsed to two lines but what I have above works and it is good enough :)Psi Prime Inc, Matthew A Perosi wrote:> Since I'm completely ignorant when it comes to PHP, what is the code > you used?> Did you grab the incoming content, save it as a file then had WebDNA > trigger occasionally for the written file?>> Matt>--------------050205040108060003040307Content-Type: text/html; charset=ISO-8859-1Content-Transfer-Encoding: 7bit
I had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.
<?php
if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){
$postText = file_get_contents('php://input');
}
$content = file_get_contents(
"http://www.kanuhawaii.org/ted/parse.tpl?thisxml=".urlencode($postText));
header("Content-type: text/xml");
echo $content;
?>
This could probably be collapsed to two lines but what I have above works and it is good enough :)
<?php
header("Content-type: text/xml");
echo file_get_contents("http://yourserver/parse.tpl?thisxml=".urlencode(file_get_contents('php://input')));
?>
Psi Prime Inc, Matthew A Perosi wrote:
Since I'm completely ignorant when it comes to PHP, what is the code you used?
Did you grab the incoming content, save it as a file then had WebDNA trigger occasionally for the written file?
Matt
--------------050205040108060003040307--
Olin Lagon
DOWNLOAD WEBDNA NOW!
Top Articles:
Talk List
The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...
Related Readings:
Email Tracking (2004)
carriage returns in data (1997)
[OT] Friday Time Waster (2003)
Multiple Pulldowns (1997)
A multi-processor savvy WebCatalog? (1997)
RE: Contexts and Ampersands (1997)
WebCat2b15MacPlugin - showing [math] (1997)
2nd WebCatalog2 Feature Request (1996)
New Command prefs ... (1997)
[shell] (2002)
WebCatalog dying in NT (1998)
WebDNA monitor not working (2002)
Variable prices and Formulas.db (1997)
search form problem.. (1997)
cookie length (1998)
[Fileinfo] Context (2000)
WebCat2b14MacPlugIn - [include] doesn't hide the search string (1997)
autosensing lanague selection (1997)
V4, simultaneous release? (2000)
WebCat2 several catalogs? (1997)