Jump to content

Recommended Posts

Posted

Hello to all,

My host requires me to upgrade to a higher version of php 5.2.17

If I select the 5.3.28 I can not log-in to the site.

Can anyone help me?

My code:

<h3>Autenticazione</h3>
    <?php
 /*
 Quick example of how to see if they're logged in or not
 Only show this login form if they're logged in */
 if(Auth::LoggedIn() == false)
 { ?>
	    <form name="loginform" action="<?php echo url('/login'); ?>" method="post">
		  <p>
		    <input type="text" onclick="this.value='';" onblur="this.value=!this.value?'Email':this.value;" name="email" value="Email/Callsign VARXXX" id="email" size="24" />
		  </p>
		  <p>
		    <input type="password" onclick="this.value='';" onblur="this.value=!this.value?'Password':this.value;" name="password" id="password" value="Password" size="24" />
		    <input type="hidden" name="redir" value="index.php/profile" />
		    <input type="hidden" name="action" value="login" />
		  </p>
		  <p>  </p>

		  Ricordami? <input type="checkbox" name="remember" />
 <br>
 <br>
 <button type="submit" id="">Login</button>
 <br>
 <br>
 <a href="<?php echo url('Login/forgotpassword'); ?>">Ho dimenticato la password</a>
    </form>
    <p>
	  <?php
 }

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...