Re: [PHP] forwarding from virtual email account to real email account

2006-01-25 Thread Binay\(Local\)
Hi I think i've been misunderstood here. I meant whether this is achievable using PHP or not? I know and can be done very easily on server with either control panel or manual intervene but its integration with PHP is my main concern. I hope you understand what i mean. Thanks, Binay

[PHP] XML to PDF

2006-01-02 Thread Binay
which can shade lights on the inputs required. Thanks in advance. Binay

[PHP] PKCS#5 padding

2005-12-09 Thread Binay\(Local\)
Hi All Has anybody got the working code to apply the PKCS#5 padding to the text for encryption. Please let me know as it seems PHP inbuilt functions do not support this padding at all. Been worried about from past 2 days. Help me out. Thanks Binay

[PHP] PKCS#5 padding

2005-12-09 Thread Binay\(Local\)
Hi All Has anybody got the working code to apply the PKCS#5 padding to the text for encryption. Please let me know as it seems PHP inbuilt functions do not support this padding at all. Been worried about from past 2 days. Help me out. Thanks Binay

Re: [PHP] PHP 4.3.8 and Turck MMCache compatibility

2004-09-24 Thread Binay
out. Thanks Binay - Original Message - From: raditha dissanayake [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 24, 2004 6:41 AM Subject: Re: [PHP] PHP 4.3.8 and Turck MMCache compatibility Binay wrote: Hi Does any one have idea about the compatibility of Turck

[PHP] PHP as CGI or Module

2004-09-24 Thread Binay
Hi How to check whether PHP is installed as CGI or Apache module? Thanks Binay

Re: [PHP] PHP 4.3.8 and Turck MMCache compatibility

2004-09-24 Thread Binay
It works on php 4.3.8 and 4.3.9 fine (as server module it does, it does not work as cgi though - as page states) lp, Bostjan On Friday 24 of September 2004 08:29, Binay wrote: Hi I don't need everything i.e encoder, optimizer, accelerator etc. What i need is Loader which can decode

Re: [PHP] PHP as CGI or Module

2004-09-24 Thread Binay
turck run with 4.3.8 , finally decided to check type (mode) of PHP installation. I m sorry for convience caused. Thanks Binay - Original Message - From: raditha dissanayake [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 24, 2004 1:40 PM Subject: Re: [PHP] PHP as CGI

Re: [PHP] PHP 4.3.8 and Turck MMCache compatibility

2004-09-24 Thread Binay
correct It show Server API CGI. So does it mean PHP is installed as CGI and not the apache module? Thanks Binay - Original Message - From: Bostjan Skufca @ domenca.si [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 24, 2004 1:21 PM Subject: Re: [PHP] PHP 4.3.8

[PHP] PHP 4.3.8 and Turck MMCache compatibility

2004-09-23 Thread Binay
Hi Does any one have idea about the compatibility of Turck MMcache with PHP 4.3.8. It was working well with 4.3.3 and ever since i have upgraded to 4.3.8 it stopped. I recompiled Turck MMcache for new version of PHP also but no luck. Can somebody help me out. Thanks in advance Binay

Re: [PHP] sql statement help needed

2004-06-30 Thread Binay
SET pc.prod_sequential_id = p.id WHERE pc.prod_id = p.id; why can't you do like this. UPDATE products_categories set prod_sequential_id = prod_id in one go. Thanks Binay thanks for your help. chris. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] suexec in php

2004-06-30 Thread Binay
you can execute system commands from within PHP using either system() , (Bexec() or passthru(). (B (BLook at these functions and m sure will solve ur problem. (B (Bthanks (BBinay (B (B- Original Message - (BFrom: "Syed Ghouse" [EMAIL PROTECTED] (BTo: "php mailinglists" [EMAIL

Re: [PHP] Session file in /tmp

2004-06-29 Thread Binay
If i m getting ur problem correctly then u want to restrict the same user logging from different machines concurrently. If tht being the case the snippet u mentioned below alone won't solve the problem . you have maintain a flag in the database which will be on when the user logs in and off when

Re: [PHP] Send a page using mail()

2004-06-28 Thread Binay
For sending html emails there are various classes which has got lottt of functionalities including attachment also. one of such class can be found at http://phpmailer.sourceforge.net/ regards binay I've read the manual for the mail function and extensively searched google, but I can't

Re: [PHP] Image Problem

2004-06-28 Thread Binay
probably the table in which ur storing the images will be having its primary key set to auto_increment. If tht is the case then when u delete banner(s) then corresponding id(s) match won't be found. i.e say table is having 4 records with ids as follows id =1 id=2 id=3 id=4 so random number

[PHP] Credit Card validation

2004-03-01 Thread Binay
Hi, I need to validate credit cards on my web site. So i m looking for information as in what all i need to do / have to implement the card validation . I m running .. Php 4.3.3 Apache 1.3.29 Red Hat Linux 9.0 Any advices are most welcome... Thanks in advance Binay

Re: [PHP] fonts

2004-02-18 Thread Binay
Hi I think u need to embed particular font into ur pages and save ur self from the hassle of auto downloading of the font in case the users don have(that font). http://www.tijs.org/embed/ Read above article which will more clarify the scenario. Thanks Binay - Original Message - From

Re: [PHP] How to detect session expiry

2004-02-18 Thread Binay
This question has been answered several times ... so search the archive ... Binay - Original Message - From: Radek Zajkowski (Mac) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 19, 2004 3:25 AM Subject: [PHP] How to detect session expiry How do I tell if session has

Re: [PHP] Is it posible to embed scripts from other server?

2004-02-18 Thread Binay
$fp =fopen(http://www.anotherserver.com/script.php,r;); then read the required information using fread or fgets functions. hope tht helps Binay - Original Message - From: The PHP Newbie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 19, 2004 3:26 AM Subject: [PHP

Re: [PHP] PHP REDIRECT

2004-02-15 Thread Binay
use sleep(no of seconds).. Cheers Binay - Original Message - From: ajay [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 16, 2004 9:54 AM Subject: [PHP] PHP REDIRECT hi! i'd like to redirect a person to another page but after a certain time interval has elapsed

Re: [PHP] error : session_start

2004-02-15 Thread Binay
set the session.save_path directive in php.ini file.. By default this is set to /tmp but as u working on win mchine please create a session directory and specify the corresponding path to aforesaid directive. Cheers Binay - Original Message - From: ajay [EMAIL PROTECTED] To: [EMAIL

[PHP] Turck MMcache installtion

2004-02-05 Thread Binay
is it possible not to compile the turck source on client's server and simply include the extension TurckLoader.so(which i'll provide them) in php.ini i.e bypassing the compile face. Please let me know .. as this is very urgent and client is not a techy person. Thanks Binay

[PHP] recursive direcotry listing

2004-02-04 Thread Binay
Hi all, is there function which scans a particual directory recurisly and stores the content in array or other way? Listing of files should be in alphabetical way and directories should come on top. Thanks Binay

Re: [PHP] Turck MMcache - still continuing or dead?

2004-01-31 Thread Binay
Hi Adrian I looked at the discussion goin on located at sourceforge. But then i m still not able to make up my mind whether to use it or not in my production server. What do u suggest? Is there any problem with the current version of MMcache? Please suggest me. Thanks Binay - Original

Re: [PHP] Turck MMcache - still continuing or dead?

2004-01-31 Thread Binay
Thanks alottt Finally have decided to go with MMcache only. Thanks all for clearing my doubts once again Binay - Original Message - From: Adrian Teasdale [EMAIL PROTECTED] To: 'Binay' [EMAIL PROTECTED]; 'Raditha Dissanayake' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

[PHP] Turck MMcache - still continuing or dead?

2004-01-30 Thread Binay
originally developed it. I don know the fact/reality and in dilemma whether to use it in my production server or not?? What do u guys suggest? Thanks Binay

[PHP] Turck MMcache - still continuing or dead?

2004-01-30 Thread Binay
originally developed it. I don know the fact/reality and in dilemma whether to use it in my production server or not?? What do u guys suggest? Thanks Binay

Re: [PHP] Turck MMcache - still continuing or dead?

2004-01-30 Thread Binay
Thanks So u mean i can go ahead with MMcache?? or do u find other (prefferably free) alternative to this.. Binay - Original Message - From: Raditha Dissanayake [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, January 31, 2004 11:24 AM Subject: Re: [PHP

[PHP] Calling Web Service in PHP

2004-01-28 Thread Binay
Hi all I need to call a web service from some other server to my php script. How can i do it ? please help me out. Thanks in advance Binay

Re: [PHP] Problems with $_POST

2004-01-21 Thread Binay
for duplicate entries urself only based on primary key or unique values in ur table. Hope this helps Cheers Binay U wrote.. I have a FORM for entering data into a DB. I use: ... ... if ($_POST['submit'] == 'Register') { ... code for INSERT into DB. This works OK, but if I REFRESH the page

Re: [PHP] Re: Pdfs getting corrupted during upload

2004-01-18 Thread Binay
Yes we are using the same server. PHP - 4.3.2 I m very confused why this is happening with them(client)?? Binay - Original Message - From: Bogdan Stancescu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 17, 2004 7:35 PM Subject: [PHP] Re: Pdfs getting corrupted during

[PHP] Pdfs getting corrupted during upload

2004-01-17 Thread Binay
there also. I don know wht to do.. Any of u guys faced this sort of problem plz tell me where exactly is the problem? Why the pdf files are getting corrupted? is there some thing hidden which is causing the corruption? Thanks in advance Binay

Re: [PHP] HTML tags inside PHP??

2004-01-17 Thread Binay
echo 'html title..'; cheers Binay - Original Message - From: SASSINC Internet Solutions - Arabic Department [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 17, 2004 3:31 PM Subject: [PHP] HTML tags inside PHP?? Hi all! How is everything? I'm want to insert

Re: [PHP] writing Excel files through PHP

2004-01-11 Thread Binay
Hi Marek, Thanks for replying ..I have got few questions based on ur suggestions.. plz find it embedded in your reply. Thanks Binay - Original Message - From: Marek Kilimajer [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, January 10, 2004 6:52 PM

[PHP] writing Excel files through PHP

2004-01-10 Thread Binay
question is how can i display the images in Excel using PHP? plz help me out Thanks in advance Binay

Re: [PHP] need a little help all

2003-12-29 Thread Binay
- Original Message - From: Richard Davey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 29, 2003 4:52 AM Subject: Re: [PHP] need a little help all Hello, Wednesday, December 17, 2003, 11:50:52 AM, you wrote: wmc Here is what i have i call 2 cookies in the top of my

[PHP] curl tutorial

2003-12-29 Thread Binay
(curl tutorial) plz let me know. Thanks Binay

Re: [PHP] multiple select option alternative to field_name[]

2003-12-28 Thread Binay
Hi Terence Assign ids to multiple select field and then use id attribute of select tag in JavaScript to access (copy,del etc.) instead of using the name attribute. Hope this helps. Cheers Binay - Original Message - From: Terence [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday

[PHP] SID problem

2003-12-04 Thread Binay
/causes?? Please help me .. PHP 4.2.2 Thanks in advance Binay

Re: [PHP] SID problem

2003-12-04 Thread Binay
I have one more question. Is it necessary to call ini_set before session_start()?? or any where in the scope of the script? - Original Message - From: Wouter van Vliet [EMAIL PROTECTED] To: 'Binay' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 3:28 PM Subject: RE

Re: [PHP] SID problem

2003-12-04 Thread Binay
Yes AllowOverride is set to None But then i can not change it as i don have access .. wht other method/solution i can look except ini_set then ?? - Original Message - From: Wouter van Vliet [EMAIL PROTECTED] To: 'Binay' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, December

[PHP] File upload issue

2003-11-29 Thread Binay
. Though manual says u can't set the value of file_uploads in the script, but its getting set (looked in phpinfo()). Why this is happening ... and if it is getting set why HTTP_UPLOAD doesn't work. Thanks in advance Binay

Re: [PHP] File upload issue

2003-11-29 Thread Binay
- Original Message - From: Bronislav Klucka [EMAIL PROTECTED] To: PHP Konference [EMAIL PROTECTED]; Binay [EMAIL PROTECTED] Sent: Saturday, November 29, 2003 1:08 PM Subject: RE: [PHP] File upload issue Are u working in safe mode? safe_mode is OFF What

[PHP] Mysql backup

2003-11-28 Thread Binay
.. Thanks in advance Binay

Re: [PHP] Mysql backup

2003-11-28 Thread Binay
Hi Rory, - Original Message - From: Rory McKinley [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, November 28, 2003 7:30 PM Subject: Re: [PHP] Mysql backup Binay If the tables for both versions are MYISAM the steps are as follows: 1. Stop mysql

[PHP] mysql_connect() : undefined function

2003-11-26 Thread Binay
know why this is coming very surprised and tensed too PHP 4.0.6 please help me out ... Thanks in advance .. Binay

Re: [PHP] mysql_connect() : undefined function

2003-11-26 Thread Binay
I just upload a simple file containing ... mysql_connect(localhost,username,password) thtst it ... and its showing fatal error and same problem Binay - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday

Re: [PHP] mysql_connect() : undefined function

2003-11-26 Thread Binay
i tried mysql_pconnect() also ... but same problem.. - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 7:18 PM Subject: RE: [PHP] mysql_connect() : undefined function [snip] I just upload a simple file containing ...

Re: [PHP] mysql_connect() : undefined function

2003-11-26 Thread Binay
it says --without-mysql -- i don know .. how suddenly this can happen Binay - Original Message - From: Sophie Mattoug [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 7:16 PM Subject: Re: [PHP] mysql_connect() : undefined function If you do phpinfo

Re: [PHP] mysql_connect() : undefined function

2003-11-26 Thread Binay
it says --without-mysql -- i don know .. how suddenly this can happen Binay - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 7:23 PM Subject: RE: [PHP] mysql_connect() : undefined function [snip] i tried

[PHP] HTML email enconding

2003-11-24 Thread Binay
Hi all, Is it necessary to encode the message using base64 or quoted-printable format while sending the HTML email. What if i don't encode the message i.e (no Content-Transfer-Encoding specified)? Does it impose some security vulnerabilities? Please helpe me out Thanks in advance Binay

Re: [PHP] HTML email enconding

2003-11-24 Thread Binay
Hi Eugene, Thanks for quick reply So does it mean that if i don't encode the message then no need of specifying the Content-Transfer-Encoding?? And almost all mail client will interpret it correctly?? Binay - Original Message - From: Eugene Lee [EMAIL PROTECTED] To: [EMAIL PROTECTED

[PHP] HTML email problem

2003-11-19 Thread Binay
the text email as it contains links and other html stuff.. Please suggest me what i can do? Is there any mail class which takes care of this problem? Thanks in advance Binay

[PHP] displaying numbers up to 2 places of decimal.

2003-11-10 Thread Binay
Hi all ! I want to display numbers(integer,float,double) up to 2 places of decimal i.e if number is interger say 10, then i want to display it like 10.00. if the number is float say 10.12345 i want to display as 10.12 i.e up to 2 places of decimal. Please help me out Thanks in advance Binay

Re: [PHP] Post variables getting lost

2003-10-26 Thread Binay
Change 'new' to something else say 'new1' as new is an operator so that might be causing the problem which in turn affecting the category also .. Hope this helps cheers Binay - Original Message - From: Joao Andrade [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 27, 2003 10

Re: [PHP] Problem with SELECT statement and reference material wanted..

2003-10-23 Thread Binay
remove ' '(single quotes) around variable name.. cheers binay - Original Message - From: P M [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 23, 2003 5:27 PM Subject: [PHP] Problem with SELECT statement and reference material wanted.. Hi all! I'm having trouble

Re: [PHP] Problem with SELECT statement and reference material wanted..

2003-10-23 Thread Binay
Sorry for my previous post .. no need of removing ' '(single quotes) echo you query and then run it on mysql and see u getting the desired result.. Binay - Original Message - From: P M [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 23, 2003 5:27 PM Subject: [PHP] Problem

Re: [PHP] Destroying session if not being used from past 10 mins.

2003-10-21 Thread Binay
Thanks alo... Is it possible to increase the probability which is by default 1% to 99 % and make sure that session are destroyed after 10 mins by setting session.gc_maxlifetime to 600. Binay - Original Message - From: CPT John W. Holmes [EMAIL PROTECTED] To: Binay [EMAIL

[PHP] Destroying session if not being used from past 10 mins.

2003-10-20 Thread Binay
Hi all, How can I configure the session to get destroyed, if not being used from past 10 mins. Thanks in advance binay

[PHP] Session not getting destroyed !

2003-10-17 Thread Binay
and session.cookie_lifetime is set to 0 also. Please help me out. Thanks in advance Binay

Re: [PHP] Session not getting destroyed !

2003-10-17 Thread Binay
Yes its showing 0 only.. Its a weird kind of problem for me .. - Original Message - From: David Otton [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, October 17, 2003 4:16 PM Subject: Re: [PHP] Session not getting destroyed ! On Fri, 17 Oct 2003 15:58

[PHP] Max no of recipients in To field of mail function

2003-10-15 Thread Binay
the large number of mails (1000 or more) please let me know. Thanks in advance Binay

Re: [PHP] Max no of recipients in To field of mail function

2003-10-15 Thread Binay
Hi Nitin Thanks for replying so fast Don't you think that using loop for each recipient will put lot of load/overhead on the server compare to putting all recepients in To field? Binay - Original Message - From: Nitin [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED]; [EMAIL PROTECTED

Re: [PHP] Max no of recipients in To field of mail function

2003-10-15 Thread Binay
Thanks alottt... Now i have got enough reasons to use loop in sending mails... Thanks once again binay - Original Message - From: Nitin [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 5:22 PM Subject: Re: [PHP] Max no of recipients

[PHP] Max no of recipients in To field of mail function

2003-10-15 Thread Binay
the large number of mails (1000 or more) please let me know. Thanks in advance Binay

[PHP] Connecting to Linux server from windows

2003-10-13 Thread Binay
Hi all ! I have PHP (4.3.2) running on windows 2k. Now i want to connect to a Linux Server and execute some commands and get the results back to win2k server. How can i achiece this. Please help me out. Thanks in advance Binay

[PHP] session not working in IE 5

2003-10-09 Thread Binay
Hi all ! My session is not working in IE 5+ but working well with IE 6+. Is there some problem with IE 5+. Please let me know as this being continuous pain for me. Thanks in advance Binay

[PHP] PHP Editor - which to use?

2003-09-22 Thread Binay
Hi everybody! Please suggest me a good PHP editor like ( Microsoft's Interdev for ASP) to write my php programs/scripts and get a visual feel. Thanks Binay

Re: [PHP] Warning during File uploading

2003-09-19 Thread Binay
Hi ! Sorry ... but yesterday couldn't get over it ... Sorry for inconvinience caused .. Binay - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 19, 2003 12:18 PM Subject: Re: [PHP] Warning during File uploading On Friday 19

[PHP] Suppressing warning messages in file uploading though HTTP

2003-09-18 Thread Binay
this warning message and is there any method to get the file size before uploading so as to alert the clients accordingly? Please help me out Thanks in advance Binay

Re: [PHP] Suppressing warning messages in file uploading though HTTP

2003-09-18 Thread Binay
Hi Radhita! Thanks for quick response. - Original Message - From: Raditha Dissanayake [EMAIL PROTECTED] To: Binay [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 18, 2003 9:37 PM Subject: Re: [PHP] Suppressing warning messages in file uploading though HTTP Hi Binay

[PHP] Warning during File uploading

2003-09-18 Thread Binay
this warning message and is there any method to get the file size before uploading so as to alert the clients accordingly? Please help me out Thanks in advance Binay

[PHP] Tracking Bandwidth usage....

2003-09-01 Thread Binay Agarwal
Hi All, I need to track the bandwidth usage of the different sites hosted on a server. How can i achieve this using PHP,Apache,mysql under Linux environment. Please suggest me as it is urgently needed by client. Thanks Binay

RE: [PHP] session variables

2003-09-01 Thread Binay Agarwal
Check out session.cookie_lifetime .. if lifetime =0 then session should disappear once you close the browser else it will stay the time specified in lifetime options. Hope this helps and let me know. Binay Diana Castillo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am having

Re: [PHP] converting date into database date format(newbie)

2003-08-29 Thread Binay Agarwal
Hi! U can convert 8-Aug-03 into mysql date which requires -mm-dd format as below. ?php date(Y-m-d,strtotime(8-Aug-03)); ? Hope this helps and let me know. Cheers Binay - Original Message - From: Anil Garg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 29, 2003 11

Re: [PHP] server/browser dependancies?

2003-08-29 Thread Binay Agarwal
Hi! Use input type='submit' name='action' value='Save' input type='submit' name='action' value='Find' instead of BUTTON type=submit name=action value=FindFind/button and so Hope this helps .. Cheers Binay - Original Message - From: VB [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: [PHP] problem with a mysql query with data from a form

2003-08-29 Thread Binay Agarwal
- Original Message - From: Vincent Fievet [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 29, 2003 11:55 AM Subject: [PHP] problem with a mysql query with data from a form -Message d'origine- De : Vincent Fievet Envoyé : mercredi 27 août 2003 10:44 À : '[EMAIL

[PHP] Extracting EXIF/IPTC info from jpeg/tiff image files

2003-08-27 Thread Binay Agarwal
some external modules/software to do the same. In case external which all modules/software to refer? Please let me know. Thanks Binay

[PHP] Extracting EXIF/IPTC info from jpeg and tiff files

2003-08-27 Thread Binay Agarwal
some external modules/software to do the same. In case external which all modules/software to refer? Please let me know. Thanks Binay

[PHP] Cookie saving path on Clinet

2003-08-26 Thread Binay Agarwal
Hi Everybody I know this is vague but couldn't find the answer. Where (i mean system path) cookies are saved on Client's machine. I though it is in windows/temp or temporaray internet files (in win 2000) but it wasn't there. Please tell me. Thanks Binay

Re: [PHP] 2 questions

2003-08-25 Thread Binay Agarwal
- Original Message - From: Thomas Hochstetter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 24, 2003 12:54 AM Subject: RE: [PHP] 2 questions The register globals is on with the live server, and off at home (my version is 4.3.2, the other is 4.1.2). does that matter?

Re: [PHP] 2 questions

2003-08-23 Thread Binay Agarwal
- Original Message - From: Thomas Hochstetter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 23, 2003 5:33 PM Subject: [PHP] 2 questions Hi guys. I have two questions for you today: 1. Weired login problem I am developinig a site for a conference where i have a

Re: [PHP] Random selection

2003-08-23 Thread Binay Agarwal
Hi You can use select distinct names from table_name order by rand() limit 3. Hope this helps and let me know. cheers Binay - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 23, 2003 6:36 PM Subject: [PHP] Random selection Hi, Can you help

[PHP] session.cookie_path problem

2003-08-18 Thread Binay Agarwal
Hi everybody I am having problem with session.cookie_path. By deafult path is /. But what i think it should be client side path.. right?? In case client is win2k where does this cookie get saved.Any idea? Binay

[PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Binay Agarwal
to decide the right choice for me. Can any one of you tell me where to find the source code of these functions. Do they require special privileges ?? Please help me out Binay

[PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Binay Agarwal
Hi everybody One basic question but still couldn't find the answer. Is php Interpreted language or Compiled Language like C or C++. Thanks in advance Binay

Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Binay Agarwal
these opcodes to machine language. right?? If it is so why PHP is an Interpreted Language. I have couple of more queries also. 1)Where to get information/resourse for PHP-GTK to be able to use it in the application. 2) What are other options of compiling PHP. Binay - Original Message

[PHP] FTP accounts

2003-08-04 Thread Binay Agarwal
Hi everybody! can any body suggest me the good resources/snippet for creating and managing FTP accounts. My configuration includes: Redhat : 7.0 Php - 4.0.6 Apache web server Any help would be highly appreciated. Thanks in advance Binay

[PHP] Web tools for FTP accounts management

2003-08-04 Thread Binay Agarwal
Hi everybody! can any body suggest me the good resources/snippet for creating and managing FTP accounts through web interface using PHP. My configuration includes: Redhat : 7.0 wu-ftpd (FTP Server) Php - 4.0.6 Apache web server Any help would be highly appreciated. Thanks in advance Binay

[PHP] Which templates to use??

2003-07-26 Thread Binay Agarwal
in advance Binay

Re: [PHP] help with explode.....

2003-07-24 Thread Binay Agarwal
Okay... this probably isn't that hard to do... but I am just not sure to do it... so i will ask you guys... i amsure someone is going to have a one liner for me here! I am making a survey/poll builder everything is dynamic... there is an admin section where the user can make the new

[PHP] popping up download dialog box

2003-07-18 Thread Binay Agarwal
file in the browser window. I don know where am i doing wrong. Please suggest me . I cracked my mind for hours but in vain. So please help me out. Thanks in advance Binay

Re: [PHP] popping up download dialog box

2003-07-18 Thread Binay Agarwal
Hi jason Thanks for the quick suggestion. I tried removing the first content-type header but still the problem reamains. I don know why?? Please let me know is there other way i can do the same? Thanks Binay - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED