File: sproxy.php

package info (click to toggle)
b2evolution 0.9.2-3%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 12,972 kB
  • ctags: 5,460
  • sloc: php: 58,989; sh: 298; makefile: 36
file content (27 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
 * This file is called back by the online spell checker
 *
 * (The original SDK features a PERL script instead.)
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
 * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
 *
 * @package admin
 */
	//	print_r($_POST);
	foreach( $_POST as $key => $val )
	{
		echo 'handlin ', $key;
		$$key = preg_replace( '#\\\(.)#', '$1', $val );
	}
	echo $f;
	echo '<textarea name="TextBox1">';
	echo $g;
	echo '</textarea>';
	echo '<textarea name="TextBox2">';
	echo $h;
	echo '</textarea>';
	echo $i;
?>