I have the following error on my SharePoint page and I try to connect to a database but I get an error. I do not know what to do since I have administrator privileges
SqlConnection conection = new SqlConnection(@"Data
Source=SHAREPOINT\SHAREP...
When I log in, it redirects to the page where the driver file is
what is this
link
THIS IS THE MODEL FILE:
<?php
class conexion{
private $conexion;
private $host = "localhost";
private $usu = "root";
private $pass = "";
pri...
I'm doing a project with CodeIgniter and I need to encrypt the password.
Controller methods: Login.php:
public function index()
{
$this->form_validation->set_rules('usuario', 'Usuario', 'trim|required|xss_clean');
$this...
Good I'm doing a login and I would need the echo that responds to me that does not exist that user or password show me in a div inside the form instead of an echo.
resupuesta.php
<?php
require('conexion/conexion.php');...
my query is to know if the following function can be implemented so that the user can log in using both the user and the email the function that I have is the following:
function login(){
global $db, $username, $errors;
// gra...
I have created a code that differentiates user levels, specifically 2, client and administrator when logging using PDO.
The thing is that I initially put this code on the client page
cliente.php
<BODY>
<!-- NIVEL USUAR...
hi migos I have a login system which when it should expire because I pass it to another page that does not have session start does not expire. that is, it always keeps me full session variables and it is not what I want I leave the code.
When I...
I hope you can help me please.
Recently I started using Laravel and I'm practicing doing a logging system, I want to use the functions that Laravel brings to authenticate users but using a different model than the default (user) and authenticati...
I have a form to "login" the client.
With two fields: user and password.
Is the syntax for connecting to the database correct?
$conexion = mysqli_connect("mysql:host=localhost", "1718d0_osmar", "1718d0_osmar", "1718d0_osmar");
Why...
This is my db model in question of users
It turns out that I need that with the same credentials the user can log in, the intention is to create a procedure where the server returns their user data, and teacher and administrative if it is,...