Jump to content
php.lv forumi

query


FT3

Recommended Posts

kad lietotays ielogoyas vinam izrada vina datus

 

pirmias kods bija tads

<?php
include("db_connect.php");

$query = "SELECT * FROM members";

$result = mysql_query($query) or die(mysql_error());


$row = mysql_fetch_array($result) or die(mysql_error());
echo "Username:";
echo $row['username'];
echo "<br />";
echo "Your password:";
echo $row['password'];
echo "<br />";
echo "Your E-mail:";
echo $row['email'];
echo "<br />";
echo "Your name:";
echo $row['name'];

?>
<br>
[<a href="logout.php">Logout</a>]

 

bet šiss kods nederj jo viņš nem tik 1 lietotaja datus

 

es meginaju adopted šo kodu ar id bet nekas nesanaca

 

ja kads zin ka lai ustajsa plizzz help !!!

Link to comment
Share on other sites

izmanto while ciklu. paskaties manuālī mysql_query(). tur ir piemērs ar while

EDIT: pag, kad tu teici "nem tik 1 lietotaja datus", es nodomāju, ka vajag vairāk par vienu? varbūt tu kko citu gribēji pateikt?

EDIT2: ohh. tas kods ņem pirmā lietotāja datus. ja gribi citu lietotāju parādīt, tad ieraksti WHERE id = xxx, kur xxx ir rādāmā lietotāja id. var gadīties, ka to lauku nesauc id, bet user_id, bet tas tev pašam labāk jāzin

 

"ustajsa"

 

Dažreiz nevar vien nobrīnīties, kā tos latviešu valodas vārdus var izkropļot...

vairāk izklausās pēc latgaliešu valodas, nevis latviešu

Edited by 2easy
Link to comment
Share on other sites

Liec tā, kad ielogojas, tad sesijā saglabā lietotāja id, kuru ieguvi no mysql kverija pec login parbaudes ($_SESSION['id'] = $id).

Tad uztaisi lapu (piem. profils.php) un tur mainīgo 'id' nosaki pēc sesijas lauka id ($id = $_SESSION['id']). Pēc tam velc visu ārā, bet neiesaku paroli tā vienkārši uzrādīt.. Labāk paroli saglabā kā md5 (md5($parole)) un loginā pārbaudi ar if(md5($parole) == $parole_no_db).

Cerams, ka kaut ko saprati.. :D

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