Jump to content
php.lv forumi

logins


Blink

Recommended Posts

paskaidrošu.

 

Piemēram reģistrācijas forma.

 

login;

password;

 

tiklīk ir savadīts viss, spiež reģistrēties.

un tos datus viņš aiznes uz DB

 

Bet es gribu lai viņš nevis aiznes uz db bet noteiktajā vietā uz array.

 

ir iespējams, jeb tikai caur db?

Link to comment
Share on other sites

<?php
$db = new db('localhost', 'user', 'pw', 'db');
$users = array(array('loginu nolasa no tā, kur ievadu loginu', 'paroli nolasa no tā, kur ievadu paroli'),);
?>



<form method="post">
<table class="signup" cellspacing="0" cellpadding="0">
<tr><td align="right">logins:</td><td><input type="text" name="logins, ko ievadu sheit"></td></tr>
<tr><td align="right">parole</td><td><input type="text" name="parole ko ievadu sheit"></td></tr>
</table>
<center style='margin-top:10px;'><input type="submit" name="login" value="Ienākt"></center>
</form>
<br /><br /><br />

 

Skaidrāk vairs nevaru izteikties. Tātad, kā to dabūt gatavu?

Edited by Blink
Link to comment
Share on other sites

Vēlviens jautājums, ja es gribu no db pēdējo 1 ierakstu ievietot iekš array.

 

Kā man to izdarīt?

 

$users = array(array('no viena kollumma pēdējais ieraksts', 'no otra kollumma pēdējais ieraksts'),);

 

 

kkā šitā?

 

$login = $row['login'];

$parole = $row['parole'];

$db = new db('localhost', 'user', 'pw', 'db');

$users = array(array('login'=>$login,'parole'=>$parole,),);

Edited by Blink
Link to comment
Share on other sites

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.   Paste as plain text instead

  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...