
Untitled
By: a guest on
May 8th, 2012 | syntax:
None | size: 1.38 KB | hits: 15 | expires: Never
simple PHP syntax issues
$arr_features=array("PasswordProtect");
$arr_FeaturesDescriptions = array("Password Protection: Password Protection will be enabled, requiring participants to enter a password in order to access the event. Your password is: "echo ($_POST['PasswordProtect']);"");
$arr_FeaturesDescriptions = array("Password Protection: Password Protection will be enabled, requiring participants to enter a password in order to access the event. Your password is: {$_POST['PasswordProtect']}");
$arr_FeaturesDescriptions = array("Password Protection: Password Protection will be enabled, requiring participants to enter a password in order to access the event. Your password is: " . $_POST['PasswordProtect']);
$arr_FeaturesDescriptions = array("Password Protection: Password Protection will be enabled, requiring participants to enter a password in order to access the event. Your password is: {$_POST['PasswordProtect']}");
$passwordprotect = validate_input($_POST['PasswordProtect']);
$arr_features=array("PasswordProtect");
$arr_FeaturesDescriptions = array("Password Protection: ... Your password is: $passwordprotect");
$arr_features=array("PasswordProtect");
$arr_FeaturesDescriptions = array("Password Protection: Password Protection will be enabled, requiring participants to enter a password in order to access the event. Your password is: ".$_POST['PasswordProtect']);