Forum: Absolute Beginners
11-03-2008, 07:15 PM
|
|
Replies: 2
Views: 1,978
PHP XML thumb
I am having problem with xml and php, well i am trying to display the thumbnail from xml file. The xml file has following line.
<media:thumbnail width="66" height="49" url="link of the page"/>
well...
|
Forum: Absolute Beginners
11-01-2008, 02:31 PM
|
|
Replies: 3
Views: 4,512
Case sensitive in mysql
I have made a login form using php and mysql. The fields of username and password is varchar data type. My problem is that the username is not case sensitive. I mean to say if my mysql field has the...
|
Forum: Absolute Beginners
05-11-2008, 03:22 PM
|
|
Replies: 4
Views: 1,140
|
Forum: Absolute Beginners
02-23-2008, 10:26 AM
|
|
Replies: 9
Views: 780
Actually i was trying to do the same way but...
Actually i was trying to do the same way but later figured out that this would take longer time if password is long. Well i have been mixing password with salt and hashing with md5 and sha couple of...
|
Forum: Absolute Beginners
02-23-2008, 06:44 AM
|
|
Replies: 9
Views: 780
Thanks for your help. Actually i was trying to...
Thanks for your help. Actually i was trying to make script which would be used for authentication. I thought i would count the length of the password and get each char from password and hash them...
|
Forum: Absolute Beginners
02-22-2008, 07:22 PM
|
|
Replies: 9
Views: 780
String help!
Well i have been trying to extract each chars of a string and keep them in an array. I have used loop to get it but failed. any ideas...
e.g.
$string = 'hello';
$len = strlen($string);
for($i = 0; $i...
|