[PHP] real password value

2002-12-13 Thread empty
Hi all; do you know how to decrypt password('xxx'); value? For example I have a function that mails password to user's mail address but result is here; User Name: xjunky Password :1ef781ad7c4b0dc2 Thanks. I've inserted the password as password('$passw'); and selected as belove function

[PHP] Embedding image a PHP file

2002-12-29 Thread empty
Hi Anybody knows how to embed a image file to a php file, not as html; for example; img src=yy.php / embedding a image file in yy.php file. Thanks everybody -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mysql_num_rows

2002-11-21 Thread empty
(): supplied argument is not a valid MySQL result resource in D:\sites\inc\register.inc on line 40 NOTE: all the fields on the db are empty anybody knows why? (PHP 4.2.3 SAPI - MySql 3.23.53 - IIS 5.0 running on WinXP) thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] thanks :)

2002-11-21 Thread empty
ooww there is nothing slecet in mysql :) thanks all -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] checkboxes

2002-11-22 Thread empty
Hello; I want to do that: I have two checkboxes: if first one is checked assign the value as a; if first one is checked assign the value as s; if both of them checked assign th value as as and insert the result db; the html code: ... tr tdinput type=checkbox name=val

[PHP] session trouble

2002-11-22 Thread empty
hi guys ; I can't use session bla..as on my site. PHP Code ?php session_register(); if(isset($username) isset($pass)){ if(login($username,$pass)){ $valid_user=$username; session_start(valid_user); do_html_url(/,Ana Sayfa);

[PHP] strings and vars

2002-11-23 Thread empty
Hi; i have a string and I want to set it as a variable name. like tahat i have string like: string; how can i get variable $string; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] strings and vars

2002-11-23 Thread empty
yiihhuuuvvv it works; I heard it, i remember variable variables I guess Thanks all EEV $var = 'string'; EEV $$var will resolve as $string -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Decrypt Password

2002-11-26 Thread empty
Hi you can use password('password_var_name') for example (insert into bla password('$password')); and after selecting the password you can use and no need encrypt decrypt the value echo(password('password')); will write the real value... I would like to make a Lost Password part to my

[PHP] printing array

2002-12-02 Thread empty
Hi ?php $stra=(aa,bb,cc,dd,ee,ff,gg,hh,ii,jj,kk,ll); $splited = array(); $splited = split(,,$stra); $c=count($splited); for($i=0 ; $i$c ; $i+=2){ echo $splited[$i]; echo $splited[$i+1]; // *error is here //Parse error: parse error, unexpected