Arc Forumnew | comments | leaders | submitlogin
1 point by easykill 5871 days ago | link | parent

Lasso (http://www.lassosoft.com/), no framework:

<html>

<body>

[

session_start( -name='helloworld');

if(session_result == 'new');

		'

		<form method="post">

			<input name="msg" type="text" />

			<input name="go" type="submit" value="go" />

		</form>

		';

	else(action_param('msg'));

		var('msg') = action_param('msg');

		session_addvar('msg', -name='helloworld');

		'<a href="' + response_filepath + '">Click Here</a>';

	else;

		'you said: ' + $msg;

		session_end( -name='helloworld');

	/if;
]

</body>

</html>