Re: [PHP] Upload not working...

2004-09-08 Thread Deependra b. Tandukar
Yes, this is what is missed: enctype="multipart/form-data" Thanks ! DT At 11:20 AM 9/8/2004 +0600, raditha dissanayake wrote: Deependra b. Tandukar wrote: I tried this form to upload a file. ... This very code works in my home computer. I tried this with my local server at my office

[PHP] Upload not working...

2004-09-07 Thread Deependra b. Tandukar
I tried this form to upload a file. Untitled Document with the following code: and am getting the message "Warning: Unable to open '\"C:\\Documents and Settings\\Administrator\\Desktop\\photos\\IMAGE0099.JPG\"' for reading: No such file or directory in /var/www/html/ICIweb/php/upload.

[PHP] Zero Sized Reply

2004-02-09 Thread Deependra b. Tandukar
Dear all, The script was working perfectly, but all of the sudden since last week stopped working, gives Zero Sized Reply. The site is http://coremag.net/corex/feedback/feedback.htm Can anybody tell me what is the problem. Below is the page I get when submit the form: ERROR The requested URL

[PHP] run exe file

2003-10-20 Thread Deependra b. Tandukar
Dear all, Is there anyway that I can put .exe file on the web, and allow visitors only to run it, not download it. Regards, DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail function

2003-09-10 Thread Deependra b. Tandukar
Dear all, Recently installed PHP in my Linux server. It says, mail function is not enabled? How is turn this on? Regards, _DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] register_globals

2003-09-02 Thread Deependra b. Tandukar
Hi, I have configured PHP 4.3.3 in which register_gloabals is set to be off. I modified etc/php.ini and set it to be On but still it shows it is off and some developed applications in php are asking for it to be turned on. How do I do this? Regards, DT -- PHP General Mailing List (http://www

[PHP] window size...

2003-04-04 Thread Deependra b. Tandukar
Hi, Is there anyway to define a fixed window size using PHP as we do with JavaScript? Regards, DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] What the heck is this Zope?

2002-08-09 Thread Deependra b. Tandukar
Dear all: What the heck is this Zope? Which is better PHP or Zope? Any idea ! DT

[PHP] bcc

2002-01-06 Thread Deependra B. Tandukar
Greetings ! Is Bcc supported in PHP? Looking forward to hearing from you. Warm Regards, DT -- 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 PROTECT

[PHP] Directory Contents Listing

2001-11-27 Thread Deependra B. Tandukar
Greetings ! How do I display the directory contents using PHP? Regards, DT -- 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] PHP 4 released date

2001-08-08 Thread Deependra B. Tandukar
Greetings! Can anybody give me, PHP4 released date? Looking forward to hearing from you. Warm Regards, DT -- 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:

Re: [PHP] my php script is very slow. help?

2001-07-27 Thread Deependra B. Tandukar
If your Database is big, avoid loops which goes to whole the DB. This is just one thought. DT - Original Message - From: "hassan xaaji" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 27, 2001 15:36 Subject: [PHP] my php script is very slow. help? > > > Hi all > > I

Re: [PHP] MySQL Query.....

2001-07-19 Thread Deependra B. Tandukar
Solved my problem by - SELECT AccountHead FROM cash - stored the result in $acchead in PHP code - UPDATE $acchead SET - Original Message - From: "Deependra B. Tandukar" <[EMAIL PROTECTED]> To: "py_sympatico" <[EMAIL P

Re: [PHP] MySQL Query.....

2001-07-18 Thread Deependra B. Tandukar
Regards, DT - Original Message - From: "py_sympatico" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 10:10 Subject: Re: [PHP] MySQL Query. > Try, > "select '$TableItem'.list where id = 1"; > > py > >

[PHP] MySQL Query.....

2001-07-17 Thread Deependra B. Tandukar
Greetings ! I have following tables in MySQL: TableItem idlist 1 Banana 2 Orange 3 Mango Other tables are: Banana, Orange, Mango Instead of selecting Table Banana directly I need to select it as "select $TableItem.list where id=1" or something like that for editing or deleting

[PHP] mysql_fetch..........

2001-07-15 Thread Deependra B. Tandukar
Greetings ! I have a table in mysql: id item 1 Apple 2 Orange 3 Banana I displayed all the items in HTML with PHP while ($row=mysql_fetch_array($query)) { $item=$row["item"]; echo " "; }; Now if I want to capture Banana or any other particular item from the displayed HT

Re: [PHP] Web Host

2001-05-16 Thread Deependra B. Tandukar
Contact [EMAIL PROTECTED] Warm Regards, Deependra B. Tandukar www.coremag.net/cvs/dt.htm Training and Networking Assistant ICOD/ICIMOD www.icimod.org Co-ordinator CORExpress The Only Native Computer Magazine of Nepal www.coremag.net

Re: [PHP] File upload !!!!

2001-05-14 Thread Deependra B. Tandukar
Increase your file size limit from 1000 or only the file size smaller or equal to 1000bytes will be uploaded. DT - Original Message - From: "Matthias Roggendorf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 14, 2001 12:36 PM Subject: Re: [PHP] File upload > Hi, >

Re: [PHP] Is it possible?

2001-03-26 Thread Deependra B. Tandukar
Thanks! I just need to browse the fields from the table, that's it. Some ideas please. Warm Regards, Deependra B. Tandukar - Original Message - From: "Luke Welling" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 11:03 AM Subjec

[PHP] Is it possible?

2001-03-26 Thread Deependra B. Tandukar
Greetings ! Is it possible to extract the field values in MySQL by PHP into the web browser so that it looks like files in Windows Explorer? Looking forward to hearing from you. Warm Regards, Deependra B. Tandukar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] mysql_fetch_array()

2001-03-07 Thread Deependra B. Tandukar
Greetings! I am using PHP and MySQL in RedHat 6.0. I have used mysql_fetch_array() to display the datas in web page but all the columns are printed twice. What can be the wrong with my code: "; while ($row=mysql_fetch_array($sql_result)) { print ""; foreach ($row as $field) pr

[PHP] MySQL help URGENT

2001-03-06 Thread Deependra B. Tandukar
Greetings! I am trying to compile MySQL. what I did are: tar -xvzf mysql-3.23.33.tar.gz cd mysql-3.23.33 ./configure --prefix=/usr/local/mysql then it startx to work and inerrupt and says testing gcc working: no configure: error: installation or configure problem: c compiler can not create execut

[PHP] Question

2001-03-04 Thread Deependra B. Tandukar
Greetings ! I am using PHP4 and MySQL for database in the web. I am using two tables. I made a search script for one table which displys the list on the web page and want to put a link in one of the fields on that web page so that the link takes browserts to the data of the other page. I could n

[PHP] JavaScript

2001-02-25 Thread Deependra B. Tandukar
Greetings! Is there any equivalent code for (JavaScript) Back Button in php? This works as back button on the menu bar. Looking forward to hearing from you. regards, DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

[PHP] re:linebreak

2001-02-13 Thread Deependra B. Tandukar
Thanks! I did with . "\r\n" too is not giving a new line. DT

[PHP] Line Break

2001-02-13 Thread Deependra B. Tandukar
Greetings! I know "\n" gives the new line and "\t" gives the tab. Is there any other code for them because this is not working in the web server where I host my web pages? Looking froward to hearing from you. Regards, DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] mail

2001-02-04 Thread Deependra B. Tandukar
Greetings! I made one script with mail <"email address">. It works in my home computer (Linux and php 4) and not working in my web server (Linux and php 4). What can be the reason? Looking forward to hearing from you. DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai