Re: [PHP] Anybody have a sucessfull use of ADO and php together ?

2002-09-02 Thread Saci
Could you please show-me a sample of php code with ODBC to get a data field and a blob field (Memo) ? ODBC and ADO are the very similar , and have both the same problems with php. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Anybody have a sucessfull use of ADO and php together ?

2002-09-02 Thread Saci
I tried to use , and have a lot of trouble. For example I can't read fields who is Date & time type I can't read memo fields I can't update using the recordtset.updated methode. The only thing I haven't trouble is to show a read only set of characters rows Anybody know where I can find more in

Re: [PHP] Replicate string or something similar

2002-08-19 Thread Saci
Thank you That's it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Replicate string or something similar

2002-08-19 Thread Saci
In ASP I use the expression myvar = string(254,"A") to have a var filled with 254 characters 'A' What is the similar one in PHP? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] odbc sql php

2002-08-16 Thread Saci
This question is more on odbc sql than on php, since I'm sure everthing is working on php side I have a php form who fills on ODBC database ( Visual Foxpro) , everthing is working except with one detail, I have a text area field on my form and when the user fill this area with to many characters

Re: [PHP] Win PHP Editor...

2002-08-11 Thread Saci
Try this one 1st http://www.phpedit.com And you will know by yourself. "Maxim Maletsky" <[EMAIL PROTECTED]> escreveu na mensagem 01c2401a$fce3cc70$1113fe17@dominanta">news:01c2401a$fce3cc70$1113fe17@dominanta... > > But why not use notepad. > > Because it reduces your production spee

[PHP] Re: Getting information of a client

2002-08-09 Thread Saci
"Jan Souman" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I would like to get information of a person who is browsing my site. Does > anyone know how to get this information? > > Kind regards, > > Jan > > -- PHP General Mailing List (http://www.ph

Re: [PHP] Checking Var's passed via URL

2002-08-09 Thread Saci
Thank you for your reply Believe or not the code today works , without any change. I guess is somethhhing related to browser cache., who probably was holding one old version. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Some suggestions

2002-08-02 Thread Saci
If you want a serius one , not the cheaper one try pair.com I use they services for more than 5 years and are very happy, the main issue is reliability. If you are more interested on price try dreamhost.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

[PHP] Re: passing variable via url ( newbye question)

2002-07-31 Thread Saci
Besides my newbye status, I guess you are not update. the $_GET is a must have when you use set globals to off, ( this is default after 4.2.1), and must be maintained for security reasons. Since I'm newbye I play with new and fresh version, and I can get details that older "phpers" does not tak

Re: [PHP] Re: passing variable via url ( newbye question)

2002-07-31 Thread Saci
The obvius and easy think is alwaiss the hard to find My problem vas the > of the tag, that I forgot, dummy issue but I made The right adn working one now are http://myadress/php/mypage.php?modo=123&color=red&size=3 and to get echo $_GET['modo'].""; echo $_GET['color'].""; echo $_GET['size']

[PHP] passing variable via url ( newbye question)

2002-07-30 Thread Saci
I can pass one variable using the url on this way http://myadress/php/mypage.php?modo=123 and to read i have the code echo $_GET['modo']."http://myadress/php/mypage.php?modo=123&color=red&size=3 and to get echo $_GET['modo']."http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

[PHP] $row and alias

2002-07-30 Thread Saci
I would like to show some fields based on a Interbase database, everthing is working when i type the fields name usinf $row-> field something like this while ($row = ibase_fetch_object($sth)) { echo "$row->RAZAO_SOCI"; echo"$row->ENDERECO\n" ; } But I would like to make a generic output wi

[PHP] Self Answer for file upload

2002-07-28 Thread Saci
The help other's with the same problem I made that self answer. The tip here is to use $_FILES instead of $_POST \n"; echo "File Name ",$_FILES['file']['name'], "\n"; echo "File Type ",$_FILES['file']['type'], "\n"; echo "File tmp ",$_FILES['file']['tmp_name'], "\n"; echo "File errors ",$_FILE

[PHP] file_name

2002-07-28 Thread Saci
I'm using php 4.21 on WIN xp. I 'm trying to work with file upload, I already read several sites who refer that php will set the variable file_name automaticly,. I made 2 tries one on line 6 and other on line 7 of the atached code, but both does not work. Why I receive the folowing errors, an

Re: [PHP] Does not work

2002-07-14 Thread Saci
I agree, I made a mistake on my last reply , and I apologize for that. Thank you also for you for your coments, but my main question still open without any related reply. > > > To say the minumum yor reply does not help in nothing. > > > > Who cares about privacy on my own company Intranet ?

Re: [PHP] Does not work

2002-07-14 Thread Saci
To say the minumum yor reply does not help in nothing. Who cares about privacy on my own company Intranet ? "Alberto Serra" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > ðÒÉ×ÅÔ! > > Saci wrote: > > // HTTP_REF

Re: [PHP] Does not work

2002-07-14 Thread Saci
// HTTP_REFERER as a feature. In short, it cannot really be trusted. Anybody know how to do that using JAva history with PHP together , or any other methode that works and can be trusted. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Does not work

2002-07-14 Thread Saci
I tried this simple code Page refered by '; echo $_SERVER['HTTP_REFERER'].''; ?> and I receive blank reply even if referenced from a link from other site. What am i doing wrong ? Or perhaps my server does not have referer enabled? -- PHP General Mailing List (http://www.php.net/) To u

[PHP] PHP, JAva history

2002-07-14 Thread Saci
I would like to see from where visitor come from mypage i need a function who return the last visited page prior to mine. I didn't found any function on php for that purpose and I'm thinking in mix Java and php for that purpose, using the browser history, Can someone show-me how can I do that.