charlesp123
Forum Replies Created
-
as I said still there is no support AT ALL , you think its not true then see for yourself here https://pinpoint.world/wordpress/support/forums/forum/pinpoint-booking-system-wordpress-plugin/
nothing is happening people are left alone… and we got no answer for the refunds either … they take our money no problem !The fact is that support didn’t answer ONE question into the forum in here https://pinpoint.world/wordpress/support/forums/forum/pinpoint-booking-system-wordpress-plugin/ for the last 2 or 3 weeks . so ok lets supposed u received a large number of tickets, how come they didnt answered anything ? why we have to post bad reviews on here to get you out and say something ? why didnt u write somewhere that u were off for the holidays ? .. if they come back as u says then I will take back my bad reviews I promise but it seems nothing is happening right now and a lot of people is complaining ..we just want some support u know its a good plugin u need to do something about support sorry to tell but people will go elsewhere if not . let see what happen in about a week. thx for the answer at least now I know you’re not dead .
- This reply was modified 8 years, 2 months ago by charlesp123.
aha OMG you are right it does add amp; but using “and” just solved the problem it is working now thank you ! and yes my error in the second [insert_php]echo $error;[/insert_php] is working too ??
thx very much !
oh and I use this with visual composer.
[insert_php]
/// user login ///session_start(); // Starting Session
$error=””; // Variable To Store Error Message
if (isset($_POST[‘submited’])) {
if (empty($_POST[‘username’]) || empty($_POST[‘password’])) {
$error= “Utilisateur ou Mot de passe invalide”;
}
else
{
$username=$_POST[‘username’];
$password=$_POST[‘password’];
$username = stripslashes($username);
$password = stripslashes($password);if ($username == “groupesanteducore” && $password == “admin”) {
$_SESSION[‘login_user’]=$username; // Initializing Session
header(“location: https://mysite/fr/$username”); // Redirecting To Other Page
} else {
$error= “Utilisateur ou Mot de passe invalide”;
}
}
}
///// fin user login
[/insert_php]
<div style=”margin: auto; width: 300px;”><form method=”post”>
<div class=””><label><b>Username</b></label>
<input name=”username” type=”text” placeholder=”Enter Username” /></div>
<label><b>Password</b></label>
<input name=”password” type=”password” placeholder=”Enter Password” /><button name=”submited” type=”submit”>Envoyer</button>
[insert_php]echo $error;[/insert_php](If I put this code into a template page it is all working) but since I want it to “echo” any errors it doesn’t speak with [insert_php]echo $error;[/insert_php] when placed into the template thaw why I want to use insert php) any help ?
</form></div>