Re: [PHP] Force-Saving an Audio File

2009-12-09 Thread Gaurav Kumar
= file_get_contents(' http://www.example.com/audio/file.mp3', false, $context); Hope this helps. Gaurav Kumar Blog.OsWebStudio.com On Wed, Dec 9, 2009 at 8:06 AM, c...@hosting4days.com c...@hosting4days.com wrote: Hi folks, I'm trying to force save .mp3 files so this is a test page (found

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-10 Thread Gaurav Kumar
Kumar blog.oswebstudio.com On Thu, Dec 10, 2009 at 9:01 PM, René Fournier m...@renefournier.com wrote: I thought error_reporting would display them, but I guess php.ini had them suppressed. Anyway, with: ?php error_reporting(-1); ini_set('display_errors', 1); set_time_limit(0

Re: [PHP] Upload dir

2009-12-10 Thread Gaurav Kumar
path is correct while you set the directory. More information on how to use ini_set to set the directory path- try googling... Gaurav Kumar blog.oswebstudio.com On Fri, Dec 11, 2009 at 10:59 AM, kranthi kranthi...@gmail.com wrote: How can i change the temporary upload directory? var_dump

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-12 Thread Gaurav Kumar
installed etc.. this can be the only reason. Something is stopping you to access external connection. Let me know when your problem is fixed. Also I tried the below code and it works fine- ?php $str = file_get_contents ('http://www.google.com'); echo $str; ? Thanks, Gaurav Kumar 2009/12/11

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread Gaurav Kumar
://www.google.co.in;); // http://www.google.com curl_setopt($ch, CURLOPT_HEADER, 0); // grab URL and pass it to the browser curl_exec($ch); // close cURL resource, and free up system resources curl_close($ch); ? Thanks, Gaurav Kumar 2009/12/13 René Fournier m...@renefournier.com The thing

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread Gaurav Kumar
-12-13, at 4:39 PM, Gaurav Kumar wrote: Ok Agreed. Lets do one last chance to ensure that your system is allowing external connections or connection to other systems in the network- Use Curl to get in the file contents. Check your PHP that Curl is enabled. Through phpinfo(); If the script

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-14 Thread Gaurav Kumar
Sorry buddy, I cant think of anything else which is going on wrong. 2009/12/14 René Fournier m...@renefournier.com PHP Version 5.3.0 Directive Local Value Master Value allow_call_time_pass_reference Off Off allow_url_fopen On On 2009-12-14, at 12:26 AM, Gaurav Kumar wrote: What

Re: [PHP] Open source project management tool - PHP

2009-12-18 Thread Gaurav Kumar
OK one more the list http://dotproject.net/ Its a nice one with all project management features. Easy to use. Just checkout the website. Gaurav Kumar blog.oswebstudio.com On Fri, Dec 18, 2009 at 12:16 AM, Robert Cummings rob...@interjinn.comwrote: Angelo Zanetti wrote: Hi guys I would like

[PHP] SMTP Local development to Send email in PHP; Windows Platform/ XP with no IIS

2010-01-15 Thread Gaurav Kumar
providing the SMTP server details in php.ini will not work for me as this requires authentication/credentials etc.. Thanks, Gaurav Kumar blog.oswebstudio.com

Re: [PHP] SMTP Local development to Send email in PHP; Windows Platform/ XP with no IIS

2010-01-15 Thread Gaurav Kumar
Sorry Kim, don't want to use phpmailer script or manually setting user accounts u/p in the script. On Fri, Jan 15, 2010 at 5:23 PM, Kim Madsen php@emax.dk wrote: Hi Gaurav Gaurav Kumar wrote on 15/01/2010 09:54: NO SMTP Any trusted SMTP software to install on local development

Re: [PHP] SMTP Local development to Send email in PHP; Windows Platform/ XP with no IIS

2010-01-15 Thread Gaurav Kumar
://php.net/manual/en/ref.mail.php http://glob.com.au/sendmail/ Thanks, Gaurav Kumar blog.oswebstudio.com On Fri, Jan 15, 2010 at 6:21 PM, Richard Quadling rquadl...@googlemail.comwrote: 2010/1/15 vikash.i...@gmail.com: You can install any smtp server on your windows machine and the mail

[PHP] Character Encoding for em-dash

2010-06-17 Thread Gaurav Kumar
-roman8! I want the string to look like- http://www.pjonline.com/cpd/nutrition_-- _prescribing_parenteral_nutrition.html Any help? Thanks, Gaurav Kumar

Re: [PHP] Quick session question

2010-06-24 Thread Gaurav Kumar
session_start() in index.php or common header include file. This session_save_path() should be declared on every file on the top. Try the above and let me know if it works. Thanks, Gaurav Kumar http://blog.OsWebStudio.Com On Thu, Jun 24, 2010 at 7:54 PM, Danny dannydeb...@gmail.com wrote: Hi guys

[PHP] Regular Expression to get the whole Comma Separated String in Array Key

2010-06-30 Thread Gaurav Kumar
any other method to get comma separated string from the master/base string. Thanks, Gaurav Kumar

[PHP] Re: Regular Expression to get the whole Comma Separated String in Array Key

2010-06-30 Thread Gaurav Kumar
Hey Richard, Thanks!!! You have resolved my problem.. GK On Wed, Jun 30, 2010 at 7:42 PM, Gaurav Kumar kumargauravjuke...@gmail.comwrote: Hi All, Need help in resolving the below problem- I would like to get the whole comma separated string into an array value- 1. $postText = chapters

Re: [PHP] Character Encoding for em-dash

2010-06-30 Thread Gaurav Kumar
:03 PM +0530 6/17/10, Gaurav Kumar wrote: Hi All, My client has a database (Sybase) in which a table column URL contains a string like- http://www.pjonline.com/cpd/nutrition_ _drugnutrient_interactions The box like un-recognized character is emdash. I need to display the data on the web lets

[PHP] I am trying to install PHP on a Windows box, but the PHPINFO page does not load up. Where could I be going wrong?

2010-11-18 Thread Kirti Kumar
I am trying to install PHP on a Windows box, but the PHPINFO page does not load up. Where could I be going wrong?

Re: [PHP] how to execute Exe file in system

2012-02-17 Thread Vikash Kumar
backtick operator ( http://www.php.net/manual/en/language.operators.execution.php) works like shell_exec() On 17 February 2012 18:00, Negin Nickparsa nickpa...@gmail.com wrote: stuart $out = `$cmd`; what it will do? what is `? I didn't ever seen it

Re: [PHP] url string being split

2012-04-26 Thread Vikash Kumar
On 26 April 2012 22:27, Chris Stinemetz chrisstinem...@gmail.com wrote: Hello list, I'm trying to pass a query string through $_GET but for some reason the array is being split on ''. How may I avoid this so it stays intacted? user selection portion: while($storerow =

Re: [PHP] Too many arrays! My head is exploding!

2012-05-29 Thread Vikash Kumar
On 29 May 2012 18:15, Gary listgj-phpgene...@yahoo.co.uk wrote: Okay, let's assume I have three things, A, B, and C. I need to produce an array with a list of all possible combinations of them, however many there might be in those combinations: e.g. A, B, C, D, AB, AC, AD, BC, ABC (not sure

Re: [PHP] Coding Web search engine in PHP

2012-08-06 Thread Vikash Kumar
On 6 August 2012 19:54, Ansry User 01 yrsna.res...@gmail.com wrote: We are trying to code a very simple and customized search engine for internal purposes. Please suggest if the PHP is the way to go or suggest the alternatives?? It would be great if you can lead us to the links which would

Re: [PHP] about PHP's filter_var function

2012-09-20 Thread Vikash Kumar
You can use regex to check the format: /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/ You can also explode $ip on . and check if every part is numeric and less than 255. On 20 September 2012 14:44, lx lxlenovos...@gmail.com wrote: Hello: I want to use filter_var function by this way:

[PHP] Special Characters

2001-01-11 Thread TV Karthick Kumar
PHP 3.0.17 with Oracle db Hi all, I am working on a search functionality where in I dont' get the exact search results if the user types in a name with special characters like: med vnlig hlsning, Antnio etc. and characters like: I dont' know whether there's any built in functions

[PHP] Urgent: Special Characters

2001-01-12 Thread TV Karthick Kumar
Hi all, I have a problem while converting the string into upper case by using the strtoupper function. I want to convert the string which has some special characters in it. For example, med vnlig hlsning, Antnio etc. There are lots of strings / words with some special characters in it.

[PHP] Re: Special Characters

2001-01-12 Thread TV Karthick Kumar
; echo $newstring; ? Probably -Original Message- From: TV Karthick Kumar [mailto:[EMAIL PROTECTED]] Sent: 12. januar 2001 13:20 To: Bryne Jrg Vidar Subject: Re: [PHP] Urgent - Special Characters Hi Can you write me in English ?. It seems that you are helping me. But I want to get it in English

[PHP] Any good way ?

2001-01-19 Thread TV Karthick Kumar
Hi all I have written the following code, but I dont' think it's a good way to write like this. Is there some other way to do good programming for this ?! ** if ($f) { $SQL .= "

Re: [PHP] Any good way ?

2001-01-19 Thread TV Karthick Kumar
://www.php.net/manual/en/control-structures.switch.php -Original Message- From: TV Karthick Kumar [mailto:[EMAIL PROTECTED]] Sent: Friday, January 19, 2001 10:40 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] Any good way ? Hi all I have written the following code

[PHP] test

2001-03-26 Thread TV Karthick Kumar
Is the list alive ? ~ K -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Fw: test

2001-03-26 Thread TV Karthick Kumar
- Original Message - From: "TV Karthick Kumar" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 26, 2001 3:16 PM Subject: test Is the list alive ? ~ K -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] PDF

2001-12-25 Thread Chamarty Prasanna Kumar
Hi All, Want to create PDF files using PHP from file formats, .eps .ps .doc .ppt .xls .html Can you please suggest a way to do it. Thanks in Advance. Regards, Kumar. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] PDF

2001-12-26 Thread Chamarty Prasanna Kumar
---BeginMessage--- Hi All, Want to create PDF files using PHP from file formats, .eps .ps .doc .ppt .xls .html Can you please suggest a way to do it. Thanks in Advance. Regards, Kumar. -- PHP General Mailing List (http://www.php.net

[PHP] URGENT-PDF

2002-01-01 Thread Chamarty Prasanna Kumar
other way of doing this using Linux OS. Thanks in advance. Cheers, Kumar. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

Re: [PHP] mail() function not sending to Yahoo address

2002-02-03 Thread TV Karthick Kumar
Hi, I use a form on my website for the visitors to send me the feedback and use the mail() to do this job for me. And I get mails without any problems I am happy... :-).. Karthick I've tried several PHP form processors, and all of them have trouble sending the form contents to a

[PHP] Search

2002-02-04 Thread TV Karthick Kumar
Hi all, Is there any other way to search all the html pages in a website with a given keyword and link to those pages, wihout using the udmsearch and mnogo... if so, please let me know... Thanks. TIA, Karthick _ Do You

Re: [PHP] HAPPY VALENTINES DAY

2002-02-13 Thread TV Karthick Kumar
Oh, ok when did PHP started celeberating valentine's day ?!?!?!?!?!?!! Karthick Hi friends, Wish you all A very Happy Valentines Day!!! May this Day bring in lots of Joy, Happiness, Success, Love May all your dreams come true Warm Regards , Balaji

Re: [PHP] Changed localhost?

2002-02-27 Thread TV Karthick Kumar
Hi, Did you try http://localhost , instead of 127.0.0.1, or with your machine, if you have changed any, recently. Or else just check if it conflicts with the port(s) if you have PWS also installed on your machine. If you don't get any solutions, alternatively post your query to the

Fw: [PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment.

2002-03-19 Thread TV Karthick Kumar
- Original Message - From: TV Karthick Kumar [EMAIL PROTECTED] To: Balaji Ankem [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 12:35 PM Subject: Re: [PHP] 100% repeatable problem with PHP 4.0.1 in WIN2k environment. Hi, From the surface leve, it looks like your php.exe

Re: [PHP] mail

2002-03-20 Thread TV Karthick Kumar
Yeah, just add Cc:[EMAIL PROTECTED] to your headers, that's it... Karthick - Original Message - From: Sven Jacobs [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 11:51 AM Subject: [PHP] mail hey Is it possible to put somebody in CC when you use the

Re: [PHP] Creating table in mySQL db

2002-03-24 Thread TV Karthick Kumar
Hi, That's very simple. All you have to do it, connect to the mysql on the host and then execute the 'create table..' querty, that's all... You can find good tutorials at webmonkey.com and devshed.com.. and lot more Hope this helps. Hth, Karthick - Original Message -

[PHP] Sybase Database CONNECTIVITY!

2002-06-21 Thread Vivek Kumar Agrawal
Hi, How can I connect PHP application on Linux to the Sybase database which is lying on the different machine. Please help me. Regards, Vivek

[PHP] Accessing a form variable before the form is posted

2002-06-21 Thread Ma Siva Kumar
of destination selection overwrites the form[city_id] from the selection of City. Is there a way to access the first form[city_id] for assigning to another variable? In short is it possible to access a variable from the form before the form is posted? Best regards, Siva, -- Ma Siva Kumar BSG

Re: [PHP] Accessing a form variable before the form is posted

2002-06-21 Thread Ma Siva Kumar
Thanks for the help Duncan Hill wrote: Use different variable names. Or make your function return a value, and use assignment to handle it. Finally I made the function to take the select name as an optional variable and used different names for the two. This helped me in other situations

[PHP] Re: Two cases going to same case?

2002-06-30 Thread Anil Kumar K.
Can't you write it this way? switch( $bar) { case 2: ... case 1: ... case 3: ... } On Sun, 30 Jun 2002, Leif K-Brooks wrote: I have a switch in a script I'm working on. I need to have case 1 and 2 both to to case 3, but without case 1 going through case 2. Is

[PHP] PHP file Opening Problem

2002-05-13 Thread Vivek Kumar Agrawal
Hi Folks, Whenever I try to open any PHP page on my browser i.e. IE then it displays Windows message box for saving the file on the disk or opening the code in any editor. I mean PHP file is not executed successfully and I am unable to figure out the problem. Please help me. Thanx in advance.

[PHP] Apache does not work with PHP

2002-05-14 Thread Vivek Kumar Agrawal
Dear Folks, I am trying to set up Suse Linux Server with sybase and PHP. While configuring my computer with these software I am getting some problem. Actually, I have done following steps: - first of all I Installed the SuSE 7.0 Linux (then apache is installed by default) - then

[PHP] Installing PHP with Apache and Sybase on Linux

2002-05-17 Thread Vivek Kumar Agrawal
Hi All, Can somebody tell me how to install PHP with Apache and Sybase on Suse linux. It would be great help for me. Regards, Vivek

Re: [PHP] Installing PHP with Apache and Sybase on Linux

2002-05-17 Thread Vivek Kumar Agrawal
and Sybase on Linux On Friday 17 May 2002 18:44, Vivek Kumar Agrawal wrote: Hi All, Can somebody tell me how to install PHP with Apache and Sybase on Suse linux. It would be great help for me. There is a list specifically for php installation issues. -- Jason Wong - Gremlins

[PHP] undefined function: sybase_pconnect()

2002-05-20 Thread Vivek Kumar Agrawal
Hi All, I am getting some error like this: Fatal error: Call to undefined function: sybase_pconnect() in /home/httpd/php/db_sybase.inc on line 47 Please tell me its solution. Regards, Vivek

[PHP] Undefined function Sybase_affected_rows

2002-05-22 Thread Vivek Kumar Agrawal
Hi All, I am unable to call Sybase_affected_rows() function. As I know this function is defined in Sybase CT libraries. So I have installed Sybase via RPM and then configured php with following command ./configure --with-apxs=/the/path/you/like/to/install/apache/bin/apxs

[PHP] what is equivalent to Response.End ?

2002-08-03 Thread Ing. Rajesh Kumar
Hi everybody Can someone tell me what is the PHP equivalent code to ASP's Response.End ? I want to stop my code at a given position so i need this. thanks in advance Raja -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to show data in one row from two rows from the database

2002-08-15 Thread Ing. Rajesh Kumar
Hi everybody What I wrote in the subject may look complicated so I added a html file. It explains what I have and what I want to show. Thanks in advance begin 666 test.html M/%$3T-465!%($A434P@4%53$E#((M+R]7,T,O+T141!(5$U,(#0N,#$ M5')A;G-I=EO;F%L+R]%3B(^#0H\:'1M;#X-CQH96%D/T*/'1I=QE/E5N

[PHP] Re: Upgraded to PHP 4.2.2 and completely lost all GET and POST variables

2002-08-17 Thread Deepak Kumar Vasudevan
PHP 4.1.2 (+) has register_globals turned off by default. Do either of the below to turn it on: 1.. Turn register_globals on in PHP.INI 2.. Use ini_set in one or more of the most commonly used files of the application to have register_globals turned on for that application. (I think a

[PHP] Re: Passing variables between servers

2002-08-22 Thread Anil Kumar K.
You cannot avoid using cookies. When you use Sessions web server is making use of cookies (unless you go for URL rewriting) which remains in the browser until one quits the browser. To tackle your situation, you can effectively make use of a database table and a session cookie: 1. set a

[PHP] Re: Simple regexp

2002-08-30 Thread Anil Kumar K.
You can use the following pattern with preg_match: /([a-f0-9]+)((:[a-f0-9]+){7})/i I made an assumption that you are using the x:x:x:x:x:x:x:x address format. Anil On Wed, 28 Aug 2002, Adam Alkins wrote: Hi Folks, Seeking some guidance here. My regexp knowledge is pathetic. I

Re: [PHP] search engine submission

2001-09-25 Thread Krushna Kumar R
Hi, I have a website which i would like to submit to the search engines frequently, so i thought i could write a program for this, not depending on other free web sites for submission Rgds Krushna Kumar - Original Message - From: Jon Haworth [EMAIL PROTECTED] To: 'Krushna Kumar R

[PHP] session not working

2001-09-27 Thread Krushna Kumar R
(uname).br; echo session name is - . session_name(uname).br; echo the session is $uname.br; ? a href=last.phpclick here go to last page/a Those are the coding i had used on the files i was trying to execute Regards Krushna Kumar

[PHP] kindly help adding days on a date

2001-10-19 Thread Krushna Kumar R
work Any help would be appreciated Regards Krushna Kumar

[PHP] mail-help

2001-11-30 Thread Chamarty Prasanna Kumar
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Help - mail

2001-11-30 Thread Chamarty Prasanna Kumar
Hi all, using mail() function to send a mail using php. I want to send that mail so that the receiver should not see the FROM address or the mail should go without any FROM address. Please write with an example !! Thanking You, Regards, Kumar

Re: Re: [PHP] URGENT-HELP !!!!!!

2001-11-30 Thread Chamarty Prasanna Kumar
Thanks very much !! Smart solution !! yes, I don't want to get reply from that mail. Just looking for any solution..if u finds one please let me know. Regards, Kumar. On Fri, 30 Nov 2001 Johan Holst Nielsen wrote : Want to send mail through PHP

[PHP] URGENT-HELP !!!!!!

2001-12-03 Thread Chamarty Prasanna Kumar
Hi All, Thanks very much for all who suggested ways to help me out. I sthere any better way of doing this [ please read the following ] using some code in PHP. Regards, Kumar. On Fri, 30 Nov 2001 Chamarty Prasanna Kumar wrote : Hi, Want to send mail through

[PHP] USERNAME

2001-12-06 Thread Chamarty Prasanna Kumar
Hi All, Want to know the usage of hw_getusername(int connection); function specifically, what connection refers to !! Thanks in advance, Kumar. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] Re:[PHP] USERNAME

2001-12-06 Thread Chamarty Prasanna Kumar
authentication is being done by the apache server.ie., we are using password protecting directory by apache. Thanks in advance, Kumar. On Fri, 07 Dec 2001 Rasmus Lerdorf wrote : Not that I have ever used HyperWave, but a 3 second glimpse at the manual would seem to indicate

[PHP] Re:USERNAME

2001-12-06 Thread Chamarty Prasanna Kumar
Hi Rasmas and All, Thanks very much for the prompt reply. phpinfo() shows only REMOTE_ADDR REMOTE_HOST REMOTE_PORT but not $REMOTE_USER. Even I tried using $REMOTE_USER alone, but no response. Please suggest a way. Kumar. On Fri, 07 Dec 2001 Rasmus

[PHP] WEB PAGE CALCI

2001-12-10 Thread Chamarty Prasanna Kumar
. Thanks in advance, Kumar. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Unix timestamp

2001-05-10 Thread TV Karthick Kumar
Hi List.. How do I convert this Sep 20 2000 00:00:00 into UNIX timestamp so that I can use the toDate() function to again convert it to the earlier format. I need to do this becoz I am moving from one table to another table where I get error, if I already have the converted date value with

[PHP] Help - Lotus

2001-06-27 Thread TV Karthick Kumar
Hi List, I am working on importing data from Lotus Organizer 5.0 to an ddress book application, written in PHP. If there's a space in the address field, it looks this when I see the .vcf file, after creating it. Note the =0D=0A=0D=0A= in:

[PHP] Function

2001-06-28 Thread TV Karthick Kumar
Hi, Is there any function to replace a character in an Array ??. Thanx in adv. ~ Karthick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] Hosting in UK

2001-02-07 Thread TV Karthick Kumar
Hi List, Can any body suggest / recommend me a good web hosting provider ?. I want to register some domains and host with the same provider which essentially has php, mysql, postgresql good support. Pls. let me know. Thanks in adv. ~ Karthick -- PHP General Mailing List

[PHP] PHP4 Changelog

2001-02-07 Thread TV Karthick Kumar
Hi List As I am working on the upgradation of my system into PHP 4.0 from the lower version, I want the Change log in a good format. A word document or some other good format which comprises the complete the Change log would be great for me to look through and do the upgradation process in

Re: [PHP] PWS PHP

2001-02-16 Thread TV Karthick Kumar
Hi First you have to down the NT version of php from php.net and also configure it and make it work. Then if you want any database to be working with it, then you should also download mysql from mysql.com and start the server and try to connect to mysql from php. Then you are done and you

[PHP] any other way ?

2001-04-04 Thread TV Karthick Kumar
Hi Following is the piece of code, which I am struggling with, now the problem is: I just want to display 4 email address in a textarea and mail them. The case here is, the available email address has to displayed and as I have maximum 4 email addresses coming up dynamically, I might

Re: [PHP] Monthly Drawing Winner!

2001-04-04 Thread TV Karthick Kumar
Can't we just get rid of this spam: [EMAIL PROTECTED] and not allow to continue. I am sure the list master (in php.net) can do it, for the sake of the list. Hope he's hearing !. It's a requisition. Thanks in adv. ~ Karthick - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

[PHP] foreach ?!

2001-04-05 Thread TV Karthick Kumar
Hi List.. I have the following code, which actually sets up the value of of the hidden variable and passes onto the next page and there I manipulate the data and send them emails. But passing the hidden variables depends upon the mem_id, that is the hidden variable has to be passed for

[PHP] foreach ?!

2001-04-05 Thread TV Karthick Kumar
Hi List.. I have the following code, which actually sets up the value of of the hidden variable and passes onto the next page and there I manipulate the data and send them emails. But passing the hidden variables depends upon the mem_id, that is the hidden variable has to be passed for

Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Ma Siva Kumar
. Best regards, Ma Sivakumar -- Integrated Management Tools for leather industry -- http://www.leatherlink.net Ma Siva Kumar, BSG LeatherLink (P) Ltd, IT Solutions for Leather Industry, Chennai - 600087 Tel : +91 44 55191757 -- PHP General Mailing List (http

Re: [PHP] Software shopping cart

2006-07-10 Thread Ma Siva Kumar
On Mon July 10 2006 2:59 pm, Ryan A wrote: Hey all, While on the subject of shopping carts, (and i didnt want to hijack the other thread) can anybody recommend a shopping cart that sells ( or: to sell) software rather than material goods? Hi Ryan OS Commerce does all that you are asking

[PHP] Hi All

2003-07-23 Thread Shishir Kumar Mishra
(LC_ALL, 'de_DE'); echo br.$producttext[2]; ? in XML file : producttext has value like für ; regards.. Shishir Kumar Mishra Agni Software (P) Ltd. www.agnisoft.com

Re: [PHP] Restart Apache with PHP???

2003-09-04 Thread Anil Kumar K.
Writing something like this as part of a Web application is definitely a bad idea. The requirement is more like that of a remote administration system and Webmin (http://www.webmin.com/) cleanly and safely fits the bill. Webmin can actually do more than just restarting Apache. But it can be

[PHP] Re: secure code

2003-05-29 Thread Anil Kumar K.
Here is exactly what you are looking for: The Open Web Application Security Project http://www.owasp.org/ best. Anil On Wed, 28 May 2003, Tim Burgan wrote: Hello, I'm wondering if you can recommend any resources that discuss writing secure code and how to put the best methods in

[PHP] Help needed

2003-06-18 Thread Shishir Kumar Mishra
Hi List, Is it possible to read XML data and return as string to browser (as string)? I do have css file but I need to get data from database and create a XML string (with the css file). This xml string has to be returned in browser(I.E.) rather than as XML file. regards.. Shishir Kumar

[PHP] sessions and browser back

2003-06-25 Thread Bibhas Kumar Samanta
Hi, I am trying to create restricted pages for my php/mysql/apache server with sessions and passing session varibales to other pages for validation. Eventually I am doinng session_start() at the begining and checking whether logged in user is authorised to use this page by a routine. Now

Re: [PHP] sessions and browser back[Scanned]

2003-06-25 Thread Bibhas Kumar Samanta
JavaScript to ensure that the data is validated on the client side before the form is submitted? Regards, Michael Egan -Original Message- From: Bibhas Kumar Samanta [mailto:[EMAIL PROTECTED] Sent: 25 June 2003 14:26 To: [EMAIL PROTECTED] Subject: [PHP] sessions and browser

[PHP] passwd protected page

2003-06-26 Thread Bibhas Kumar Samanta
Hi, Without using sessions , how can I create passwd protected pages in mysql/php. I need to remember the user from login page and validate this user in other pages. Thanks, Bibhas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] passwd protected page

2003-06-26 Thread Bibhas Kumar Samanta
again DS -Original Message- From: Bibhas Kumar Samanta [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 8:52 AM To: [EMAIL PROTECTED] Subject: [PHP] passwd protected page Hi, Without using sessions , how can I create passwd protected pages in mysql/php. I need

Re: [PHP] passwd protected page

2003-06-26 Thread Bibhas Kumar Samanta
again DS -Original Message- From: Bibhas Kumar Samanta [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 8:52 AM To: [EMAIL PROTECTED] Subject: [PHP] passwd protected page Hi, Without using sessions , how can I create passwd protected pages in mysql/php. I need

Re: [PHP] passwd protected page

2003-06-26 Thread Bibhas Kumar Samanta
: [EMAIL PROTECTED] Telephone: 1300 88 111 2 - Fax: 1300 882 221 - -Original Message- From: Bibhas Kumar Samanta [mailto:[EMAIL PROTECTED] Sent: Thursday, 26 June 2003 5:14 PM To: Sichta Daniel Cc: [EMAIL PROTECTED] Subject: Re: [PHP

Re: [PHP] defect tracking systems

2003-06-26 Thread Bibhas Kumar Samanta
can try gnatsweb. It is very widely used, and less complicated/featured than bugzilla, Bibhas Martin Balcar wrote: Hi, I want to begin to use some of bug tracking systems. I think it can help me with developing more robust applications and make an easier communication with my clients. I

[PHP] VB script

2003-06-27 Thread Shishir Kumar Mishra
Hi All, Can I call function Defined PHP from VBScript? regards.. Shishir Kumar Mishra

[PHP] executing a command in different prompt through PHP

2002-11-26 Thread Sanjoy Kumar Roy
hi, i want to know how to execute a command of another program in PHP. For example, i run a server program and get a command prompt from that server program. Now i want to execute a command of that server program in that command prompt from a web interface that is going to be designed in PHP. i

[PHP] [Newbie Guide] For the benefit of new members

2003-10-21 Thread Ma Siva Kumar
programming with PHP. Best regards, -- Integrated Management Tools for leather industry -- http://www.leatherlink.net Ma Siva Kumar, BSG LeatherLink (P) Ltd, Chennai - 600106 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] [Newbie Guide] For the benefit of new members

2003-10-22 Thread Ma Siva Kumar
this link : http://phpeditors.linuxbackup.co.uk/ (contributed by Christophe Chisogne). Hope you have a good time programming with PHP. Best regards, -- Integrated Management Tools for leather industry -- http://www.leatherlink.net Ma Siva Kumar, BSG LeatherLink (P) Ltd

[PHP] How to get the server information

2003-11-04 Thread K. Praveen Kumar
Dear All, How can I get the Server Information which operating system the server is running? Using PHP. please let me know -- Thanks Regards Praveen Kumar SoftPro Systems Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to get the server information

2003-11-04 Thread K. Praveen Kumar
- From: K. Praveen Kumar [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Praveen Kumar [EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 2:33 PM Subject: [PHP] How to get the server information Dear All, How can I get the Server Information which operating system the server is running

[PHP] How to support Multi Lingual characters

2003-11-07 Thread K. Praveen Kumar
Dear List, I would like to support Multi lingual characters using PHP in my application. How can I support? Does PHP automatically supports this feature. Please let me know. I will be really waiting for your suggestions -- Thanks Regards Praveen Kumar SoftPro Systems Ltd -- PHP

RE: [PHP] How to support Multi Lingual characters

2003-11-07 Thread K. Praveen Kumar
in the same language. Can it be done?? -- Thanks Regards Praveen Kumar SoftPro Systems Ltd On Fri, 2003-11-07 at 16:17, umesh wrote: yes, though compile PHP with japanese support, you can accept input in English as well. Umesh. -Original Message- From: K. Praveen Kumar [mailto:[EMAIL

[PHP] HTML2PDF on the fly

2003-11-11 Thread K. Praveen Kumar
;; } if (bad_url($url)) { print(HTMLHEADTITLEBad URL/TITLE/HEAD\n .BODYH1Bad URL/H1\n .PThe URL BTT$url/TT/B is bad./P\n ./BODY/HTML\n); } else { topdf($url); } ? -- Thanks Regards Praveen Kumar SoftPro Systems Ltd ---SOFTPRO DISCLAIMER

Re: [PHP] HTML2PDF on the fly

2003-11-11 Thread K. Praveen Kumar
This is the error I am getting while executing the script. File does not begin with '%PDF-'. -- Thanks Regards Praveen Kumar SoftPro Systems Ltd On Tue, 2003-11-11 at 16:29, Burhan Khalid wrote: K. Praveen Kumar wrote: Hi all, Can anybody tell me how can I convert the HTML to PDF

[PHP] [Newbie Guide] For the benefit of new members

2003-11-26 Thread Ma Siva Kumar
] 10. Ask smart questions http://catb.org/~esr/faqs/smart-questions.html [contributed by Jay Blanchard) Hope you have a good time programming with PHP. Best regards, -- Integrated Management Tools for leather industry -- http://www.leatherlink.net Ma Siva Kumar

[PHP] [Newbie Guide] For the benefit of new members

2003-12-03 Thread Ma Siva Kumar
] 10. Ask smart questions http://catb.org/~esr/faqs/smart-questions.html [contributed by Jay Blanchard) Hope you have a good time programming with PHP. Best regards, -- Integrated Management Tools for leather industry -- http://www.leatherlink.net Ma Siva Kumar

<    1   2   3   >