41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
/** edit customer data
|
|
*
|
|
* @version 2.0.0
|
|
* @since 2008-02-13
|
|
* @author Martin Lenzelbauer
|
|
*/
|
|
|
|
$access = "false";
|
|
if($_GET['action'] == "access"){
|
|
$access = "true";
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<title>Kulturhaus Bruckmühle | Kundendaten</title>
|
|
<script src="../js/ac_runactivecontent.js" type="text/javascript"></script>
|
|
<link rel="stylesheet" type="text/css" href="../css/error.css" />
|
|
</head>
|
|
<body style="background-color:#DEDEDE">
|
|
<script type="text/javascript">
|
|
AC_FL_RunContent( 'codebase', 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
|
|
'width', '1000',
|
|
'height', '450',
|
|
'id', 'editCustomer',
|
|
'align', 'middle',
|
|
'src', 'customer',
|
|
'quality', 'high',
|
|
'bgcolor', '#dedede',
|
|
'name', 'editCustomer',
|
|
'allowscriptaccess', 'sameDomain',
|
|
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
|
|
'movie', 'customer',
|
|
'scale', 'noscale',
|
|
'flashvars', 'forgotAccess=<?php echo $access ?>');
|
|
</script>
|
|
</body>
|
|
</html>
|