Re: [PHP] Uploading large files

2006-05-14 Thread php @ net mines
quot;Rory Browne" <[EMAIL PROTECTED]> To: "php @ net mines" <[EMAIL PROTECTED]> Cc: "PHP-General" Sent: Saturday, May 13, 2006 8:27 PM Subject: Re: [PHP] Uploading large files possibly by using CGI/php, and changing the relevent vaules, on the command line. Why d

[PHP] Uploading large files

2006-05-13 Thread php @ net mines
Hi all is there a way to upload large files (e.g. 15mb) without changing the default settings in php.ini***? Preferably by using php, but if not is there another web tech (e.g. Java applets) that will allow me to do this? Thanks in advance Mario -- PHP General Mailing List (http://www.p

[PHP] PHP charset problem

2006-01-29 Thread php @ net mines
Hi all I'm using PHP 4.x and MySQL 3.x. I'm saving in my DB various fields with greek text. What I need to do is pass that data to flash in UTF format, but the MySQL doesn't support UTF. Is there a way to take the greek text and convert it to UTFchars so Flash can read it? Many Thanks Mar

[PHP] LINKS

2005-09-24 Thread php @ net mines
Hi all is there a way to have a program detecting when a link was clicked and automatically opening another window (that can "plugged-in" in any website - running php of course)? I know... I hate pop-ups too but a client asked for it... Thanks M -- PHP General Mailing List (http://www.php

Re: [PHP] BOOKING SYSTEM

2005-09-21 Thread php @ net mines
ING SYSTEM well I did it in the past, at the end after a lot of tests and simulation i decided for warehouse table id_hotel, date, num_total_rooms, num_booked_rooms this is day by day handling it is really flexible you can satisfy each kind of request with very simple queries you also gain more flex

[PHP] BOOKING SYSTEM

2005-09-20 Thread php @ net mines
Hi all I have a hotel booking system where for sppecific periods we have specific availability e.g. hotel_id, hotel_name, hotel_fromperiod, hotel_toperiod, hotel_availablesinglerooms 1, Hilton, 20/06/05, 20/08/05, 20 We have a second table for recording the bookings e.g.hotel1_id, hotel1_n

[PHP] replace

2005-09-19 Thread php @ net mines
Hi all if I have an array of chars to be replaced array(1,2,3,4,5); and an arry of chars to replace with array(a,b,c,d,e) what function do I need to replace all chars from one arry to the other that are found in the var $contents Thanks M -- PHP General Mailing List (http://www.php.net/)

[PHP] Entering foreign characters into MySQL

2005-09-13 Thread php @ net mines
Hi all I have a bulgarian/spanish excel file that I have to import to a mysql database. Since I can't save it as csv without replacing the foreign chars with (???) I saved it as unicode text. Next, I thought I would replace the (\t) with (;) and all the foreign chars with the &#xxx;. The p