Search found 25 matches

by satheshf12000
Sun Jan 04, 2009 5:28 am
Forum: PHP - Code
Topic: ASCII key problem
Replies: 3
Views: 247

Re: ASCII key problem

Hi You should have put your site url here, so that I wouldnt need to search it in google. There is no charset definition on your page. You should add the following to your html head : <meta http-equiv="content-type" content="text/html; charset=Windows-1251" /> May be you will al...
by satheshf12000
Sun Jan 04, 2009 2:28 am
Forum: PHP - Code
Topic: ASCII key problem
Replies: 3
Views: 247

ASCII key problem

Hello everyone, I'm not sure what the problem is and whether this is the right place. When I click my page from my email (I am sending the links to my users actually), I am getting this value in between my text randomly '�'. See the attachment for you to understand better. But when I directly goto m...
by satheshf12000
Sat Apr 28, 2007 9:38 am
Forum: PHP - Code
Topic: Read rtf ?
Replies: 5
Views: 1292

Read rtf ?

Hi all.. I am wondering on how to read an rtf file through php. Its printing as if it was opened as a text file. somethings are included automatically like this.. {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}} {\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard...
by satheshf12000
Mon Dec 25, 2006 9:17 pm
Forum: PHP - Code
Topic: ip address identification
Replies: 1
Views: 581

ip address identification

Hi all,

I want to find out from which location, my users are coming to my website. i.e How can i know that certain ip addresses are from USA , some are from INDIA..etc.How to know the place of the users?? Any ideas?? Any help would be appreciated.

thanks..
by satheshf12000
Sun Nov 05, 2006 8:57 am
Forum: PHP - Code
Topic: PDF reading ?
Replies: 4
Views: 885

Maybe he wants to accomplish the task using PHP. If so, take a look at this.
I could find only writing text, images to PDF files. I am trying to read/convert the PDF file to a text file. I couldnt find reading a PDF file. Say I would edit a ebook.
by satheshf12000
Sun Nov 05, 2006 3:59 am
Forum: PHP - Code
Topic: MAIL (Message/Body) problem
Replies: 13
Views: 2231

what are you sending in the $msg ??
by satheshf12000
Sun Nov 05, 2006 3:26 am
Forum: PHP - Code
Topic: PDF reading ?
Replies: 4
Views: 885

PDF reading ?

Hi all

Can someone tell me how to read a pdf file and copy the text to a text file ? Is is possible to read ??

help is really appreciated..
by satheshf12000
Sun Nov 05, 2006 3:23 am
Forum: PHP - Code
Topic: MAIL (Message/Body) problem
Replies: 13
Views: 2231

Try in this way: $eol = "\r\n"; $mailheader = 'MIME-Version: 1.0' . $eol; $mailheader .= 'Content-type: text/html; charset=iso-8859-1' . $eol; $mailheader .= "From: XXX Mail Services<mailer@xxxxxx.com>". $eol; $mailheader .= 'Return-Path: Madhu <no-reply@xxxxxx.com>'.$eol; // thi...
by satheshf12000
Mon Oct 23, 2006 4:11 pm
Forum: PHP - Code
Topic: Load Defauly Form Values From DB
Replies: 9
Views: 2325

$info = mysql_query("SELECT * FROM `users` WHERE email_address = '{$email_address}' "); $info2 = mysql_query("SELECT * FROM `basic` WHERE email_addy = '{$email_addy}' "); Try writing your query without single quotes for the table name like this: $info = mysql_query("select ...
by satheshf12000
Sat Oct 14, 2006 8:45 am
Forum: Javascript
Topic: login problem
Replies: 15
Views: 2712

So does SSL involve any coding in my login.php and login_chk.php ? Or just inform the host to activate SSL? My host says Shared SSL with a Separate Folder. I should have https infront of the login.php. Is that only actually involved ?
by satheshf12000
Sat Oct 14, 2006 7:49 am
Forum: Javascript
Topic: login problem
Replies: 15
Views: 2712

It's not possible to hash the submission without Javascript. You're just going to have to live with that, or more importantly, your users will. Educate them that having Javascript enabled (at least for login) is more secure. SSL would make it even more secure and is sometimes easier to support and ...
by satheshf12000
Sat Oct 14, 2006 3:04 am
Forum: Javascript
Topic: login problem
Replies: 15
Views: 2712

This is taken from maugrim's tutorial, it uses SHA256, but you should be able to modify it for md5... I have already integrated the JavaScript MD5 to my login system. But what if the JavaScript is disabled in the user's browser. What I am expecting is that, in the client side itself I will test for...
by satheshf12000
Fri Oct 13, 2006 4:20 pm
Forum: Javascript
Topic: login problem
Replies: 15
Views: 2712

Hi, I have come up with JavaScript detection. It detects perfect. This works in PHP_SELF. Now i need to add MD5 and send the hashed password to the the server side in a hidden field to authenticate by login_chk.php. Can someone help me further ? Can this be done ? <script> function jstest() { docume...
by satheshf12000
Fri Oct 13, 2006 1:08 pm
Forum: Javascript
Topic: login problem
Replies: 15
Views: 2712

I have integrated MD5 javascript to my login system. thanks.. hey i got a new problem now. If the JavaScript is disabled in user's browser then i how can we pass the password to the authentication script in a safe manner ?
by satheshf12000
Fri Oct 13, 2006 11:55 am
Forum: PHP - Code
Topic: Php and javascript problem
Replies: 6
Views: 718

can we detect whether javascript is disabled or not in PHP ? Is there anyway ?