[PHP] http_post_files not returning file type

2001-05-01 Thread Tomasz Abramowicz
this is taken straight from phpinfo(), as you can see its all there except for type. I was wondering why wouldnt my RH7.0, Apache 1.3.12 w/ PHP4.0.4pl1 know what the file type was... HTTP_POST_FILES["userfile1"] Array ( [name] => palazzina1.jpg [type] => [tmp_name] => /tmp/phpewzSB

Re: [PHP] HELP !!!!

2001-05-01 Thread Tomasz Abramowicz
(www.phpwizard.net) > Try phpMyAdmin > > Chris > > Hassan Arteaga wrote: > > > Hi all !!! > > > > I need URL to download some visual tool to create Databases, tables, > > etc..for mySQL > > > > Thanks > > > > -- > > M. Sc. Hassan Arteaga Rodríguez > > Microsoft Certified System Engineer > >

Re: [PHP] date list

2001-05-01 Thread Tomasz Abramowicz
ahem $daysinmonth = date('t'); - Original Message - From: "Chris Fry" <[EMAIL PROTECTED]> To: "Jon Rosenberg" <[EMAIL PROTECTED]> Cc: "PHP List" <[EMAIL PROTECTED]> Sent: Wednesday, May 02, 2001 3:06 AM Subject: Re: [PHP] date list > Jon, > > Just had to do almost exactly this - here's

Re: [PHP] Managing Multiple Conditions in a MySQL Query

2001-05-01 Thread Tomasz Abramowicz
Recent Signatures\n"; $query = "SELECT FirstName,LastName,CityState FROM phPetition WHERE Public='yes' AND Verified='yes' ORDER BY ID DESC LIMIT 0,5"; $result = mysql_query( $query ) or die("never expect your query to work: $query"); while ( $row = mysql_fetch_array( $result ) ) { echo

Re: [PHP] Problems with Netscape

2001-07-02 Thread Tomasz Abramowicz
> > I have a login form (look below) It works just perfict in IE but in > > Netscape it gives me this error Not Found The requested URL > > /build3.0/user/ was not found on this server. > > >^ try an "echo" here. > dont think so. -- PHP General Mailing List (h

Re: [PHP] book help

2001-09-05 Thread Tomasz Abramowicz
http://www.php.net/books.php hihi t. - Original Message - From: "Nikola Veber" <[EMAIL PROTECTED]> To: "php forum" <[EMAIL PROTECTED]> Sent: Wednesday, September 05, 2001 19:36 Subject: [PHP] book help > I am a begginer in php and I have bought the Sterling > Huges' "php developer's co

[PHP] end this thread? Re: [PHP] Re: Pirate PHP books online?

2007-07-19 Thread tomasz abramowicz
> > It's like defining good and evil -- at some point in the conversation > someone is going to use the words God or satan. > that's rather narrow minded. t. ps. sorry, i just thought i would spam some as well... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:/

Re: [PHP] Counting files in directory and subdirectory!

2006-01-25 Thread tomasz abramowicz
start here: http://www.php.net/readdir check out as well: 'string functions' for finding 'amrs' and loops to make recursive search... t. Nicholas Couloute wrote: I want a script where it will count all the amrs in a folder and it's sub folders like this setup: amrs > 50 cent > amrs ni

Re: [PHP] Detailed Report

2005-10-27 Thread tomasz abramowicz
if your db is built correctly you could use UNION or JOIN(S) to build the correct query. otherwise look into DISTINCT(ROW) and/or creating temporary tables. formatting the info later is, as adrian illustrated, up to you. t. ps. all the above depends on your mysql server version and configuration

Re: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread tomasz abramowicz
Al wrote: Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? Works fine for Mozilla, etc. print_r($_POST) shows several and values just fine. Thanks post your code. ie6 not returning post values from textarea fields works fine for me. ie6 not return