<% * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sampleposteddata.php * This page lists the data posted by a form. * * Version: 1.0 * Modified: 2005-07-01 * * File Authors: Soenke Freitag (www.afp-hosting.de) * %> FCKeditor - Samples - Posted Data

FCKeditor - Samples - Posted Data

This page lists all data posted by the form.
<% lcForm=REQUEST.Form() lcForm=STRTRAN(lcForm,"&",CHR(13)+CHR(10)) FOR lnLoop=1 TO MEMLINES(lcForm) lcZeile=ALLTRIM(MLINE(lcForm,lnLoop)) IF AT("=",lcZeile)>0 lcVariable=UPPER(ALLTRIM(LEFT(lcZeile,AT("=",lcZeile)-1))) lcWert=ALLTRIM(RIGHT(lcZeile,LEN(lcZeile)-AT("=",lcZeile))) lcWert=Server.UrlDecode( lcWert ) ? [] ENDIF NEXT %>
Field Name   Value
]+lcVariable+[ =]+lcWert+[