Re: [PHP] Warning at PDO:Firebird driver manual page removed.

2012-09-21 Thread Davi Marcondes Moreira
functions. Unfortunately I can't share the code here, due to ethics contract. But I'll stay in touch in the discussion group you've sent and keep informed. Certainly I'll find more PHP/Firebird developers there. Sincerely, 2012/9/21 Lester Caine les...@lsces.co.uk Davi Marcondes Moreira wrote

[PHP] Warning at PDO:Firebird driver manual page removed.

2012-09-20 Thread Davi Marcondes Moreira
. The question is: why the warning message was removed, and now this extension is safe for use, without risks of being discontinued or depreciated? Sincerely, -- Davi Marcondes Moreira + Info: http://about.me/davi.m.moreira

Re: [PHP] how to make multiple sql run faster

2009-03-22 Thread Davi Vidal
Usually a single transaction is faster than an insert a time (with or without union) What do you mean? START TRANSACTION; INSERT; INSERT; INSERT; COMMIT; Is that? Thank you very much davi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: if elseif elseif elseif....

2009-03-05 Thread Davi Ramos
; } elseif (strlen($_POST[ISBNIN]) == 0 ) { $obligatoryFieldNotPresent = 1; } elseif (strlen($_POST[languageIN]) == 0 ) { $obligatoryFieldNotPresent = 1; } elseif (!empty($_POST['categoriesIN'])) { $obligatoryFieldNotPresent = 0; } -- Davi R. Tavares

[PHP] Best error handling

2009-02-27 Thread Davi Ramos
outputed. I would like to output xml even on fatal errors (in that case, telling that something gone wrong). I tried using register_shutdown_function but it is crashing (as the nature of fatal errors that make the envirionment unstable). Any idea? Thanks! -- Davi R. Tavares

[PHP] Re: Best error handling

2009-02-27 Thread Davi Ramos
, but it crashes when using my php stream mock implementation (that I use to simulate calls to the script). Thanks anyway Nathan! PS. Is there some plan to make PHP full exception-ready, dropping the usual way of return values? Davi On Fri, Feb 27, 2009 at 9:51 PM, Nathan Rixham nrix

[PHP] Help with a potential bug

2009-02-27 Thread Davi Ramos
not work. I have the backtrace and a ready to debug environment (PHP 5.2.6 and Apache 2.2) with GDB. -- Davi R. Tavares

Re: [PHP] Top/bottom posting holy war *cringe* (was: New to PHP)

2008-10-13 Thread Davi Vidal
On Monday 13 October 2008 13:44:27 TG wrote: I concede only that the PHP list has a requested style (bottom posting). I disagree on it's usefulness OVER top posting. So, this is the only list that you read. -- Davi Vidal -- E-mail: davividal at siscompar dot com dot br MSN

Re: [PHP] Re: PHP editor for linux

2008-08-15 Thread Davi Vidal
/dev/sda1 ;) Butterflies. :-) http://xkcd.com/378/ -- Davi Vidal -- E-mail: [EMAIL PROTECTED] MSN : [EMAIL PROTECTED] GTalk : [EMAIL PROTECTED] Skype : davi vidal YIM : davi_vidal ICQ : 138815296 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Validating Email Conditional

2007-08-01 Thread Davi
in format [EMAIL PROTECTED] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Por favor não faça top-posting, coloque a sua resposta abaixo desta linha. Eu não respondo top-post/HTML post. Obrigado. Please don't do top-posting, put your reply

Re: [PHP] About PHP CMS

2007-07-06 Thread Davi
a personal visit counter, run away OOP. If you're talking about a really big project (And yes, CMS _is_ a big project), go ahead and use OOP. OOP is better to mantain... :-) HTH -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite

Re: [PHP] explode string at new line

2007-06-06 Thread Davi
Em Quarta 06 Junho 2007 02:50, Jim Lucas escreveu: Chris wrote: Davi wrote: Em Terça 05 Junho 2007 23:52, [EMAIL PROTECTED] escreveu: That's exactly correct. Except I /think/ you should use \n instead of '\n'. array explode ( string $delimiter, string $string [, int $limit] ) So

Re: [PHP] explode string at new line

2007-06-06 Thread Davi
Em Quarta 06 Junho 2007 10:54, Davi escreveu: But... Why does it happen: [code] $object=mysql_fetch_object($result); $texto = $object-texto; $texto=preg_replace(/\r|\n/,,stripslashes($texto)); echo $texto; [/code] [output] Teste \r\nde formatação! \r\nTudo funcionando... \r\n

Re: [PHP] explode string at new line

2007-06-06 Thread Davi
Em Quarta 06 Junho 2007 13:20, Jim Lucas escreveu: Davi wrote: Em Quarta 06 Junho 2007 10:54, Davi escreveu: But... Why does it happen: [code] $object=mysql_fetch_object($result); $texto = $object-texto; $texto=preg_replace(/\r|\n/,,stripslashes($texto)); echo $texto

[PHP] explode string at new line

2007-06-05 Thread Davi
Hi all. I've the fowlling string: $_POST[my_text]=hi...\nthis is my multi-line\ntext; Can I use explode to have something like: $str[0]=hi...; $str[1]=this is my multi-line; $str[2]=text; $str=explode($_POST[my_text],'\n'); TIA and sorry the *very* poor english. -- Davi Vidal [EMAIL

Re: [PHP] explode string at new line

2007-06-05 Thread Davi
, probaly, is: $str=explode(\n,$_POST[my_text]); Thank you very much. -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war

Re: [PHP] explode string at new line

2007-06-05 Thread Davi
Em Quarta 06 Junho 2007 00:18, Chris escreveu: Davi wrote: Em Terça 05 Junho 2007 23:52, [EMAIL PROTECTED] escreveu: That's exactly correct. Except I /think/ you should use \n instead of '\n'. So, I was wrong... The right way, probaly, is: $str=explode(\n,$_POST[my_text

Re: [PHP] Attempting to search a MySQL database from PHP not working

2007-05-31 Thread Davi
appreciate it. HTH -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war. Por favor não faça top-posting, coloque

Re: [PHP] Attempting to search a MySQL database from PHP not working

2007-05-31 Thread Davi
Em Quinta 31 Maio 2007 16:38, Jason Pruim escreveu: while($result_row = mysql_fetch_array($result) { Worked perfectly after adding a closing ) Thanks for the tip! Forgive me for that!!! #'_'# I *always* forget the closing )... =P -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED

Re: [PHP] problems in WHERE statment

2007-05-23 Thread Davi
=$today LIMIT 0 , 30 '; I have assigned $today this way $today=date(Y-m-d); Can you tell me what I did wrong?? Sure! =) You must scape your PHP variables in any SQL query... Try this: $query=SELECT * FROM `joblisting` WHERE open = '$today' LIMIT 0,30; HTH -- Davi Vidal [EMAIL PROTECTED

Re: [PHP] convert numerical day of week

2007-05-22 Thread Davi
Em Terça 22 Maio 2007 22:39, Robert Cummings escreveu: On Tue, 2007-05-22 at 21:13 -0400, [EMAIL PROTECTED] wrote: Mom! Dad! Stop fighting! In case anyone is wondering... I'm the Dad!! :) Just read my sig... =) Time to sleep... Good bye! =) -- Davi Vidal [EMAIL PROTECTED] [EMAIL

Re: [PHP] Adserver programming with php

2007-05-19 Thread Davi
], you'll get better results... [1] - http://archives.gentoo.org/gentoo-user-br/msg_11719.xml [2] - www.gentoo.org HTH -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start

Re: [PHP] Ajax Developer

2007-05-09 Thread Davi
months ongoing. $560/day C2C. Hands up everyone who uses the Photoshop IDE... =P _o/ hehehe How can I do an while loop in Photoshop CS 3?? =] Using the pen tool? On which layer? thanks! =] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love

Re: [PHP] Ajax Developer

2007-05-09 Thread Davi
to the Gimp IDE :) MS Paint or Xpaint sounds little better to me... =] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war. pgpwVNnRgmJnk.pgp Description: PGP

Re: [PHP] PHP 5.2.2 - Undefined Function mysql_connect()

2007-05-07 Thread Davi
()? HTH -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war. pgpqTKyP488jG.pgp Description: PGP signature

Re: [PHP] PHP 5.2.2 - Undefined Function mysql_connect()

2007-05-07 Thread Davi
to the correct name, php.ini, and now phpinfo shows C:\PHP\php.ini so i know it's finding the right file. still the same problem, though. Yeah... But you must look at mysql section in phpinfo()... If it's there, all must work fine... Otherwise, you must check your php.ini... -- Davi Vidal [EMAIL

Re: [PHP] PHP 5.2.2 - Undefined Function mysql_connect()

2007-05-07 Thread Davi
! =] But... Consider reply to list next time... =] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war. pgplrhIY4ZYw1.pgp Description: PGP signature

Re: [PHP] Blocking the direct download of a file

2007-05-07 Thread Davi
); } ? The problem is I get a java.lang.ClassNotFoundException. Is there a way to change a reference like this 'on-the-fly' so to speak? Is my code wrong and this method can be modified to work? Change the content-type? I don't known how to do it... But I would try it... =] HTH -- Davi Vidal [EMAIL

Re: [PHP] CMS Systems

2007-05-07 Thread Davi
Em Segunda 07 Maio 2007 16:46, Joey escreveu: Does anyone know of any good open source CMS system? ( content management system ) XOOPS is a good one... -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how

Re: [PHP] Feisty Fawn and apt-get

2007-05-05 Thread Davi
an php-list... =] HTH -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Religion, ideology, resources, land, spite, love or just because... No matter how pathetic the reason, it's enough to start a war. pgp5RWUxpURPp.pgp Description: PGP signature

Re: [PHP] Find MAC Address in PHP

2007-04-24 Thread Davi
Em Terça 24 Abril 2007 10:07, Tijnema ! escreveu: On 4/23/07, Davi [EMAIL PROTECTED] wrote: Em Domingo 22 Abril 2007 03:12, Richard Lynch escreveu: On Fri, April 20, 2007 3:00 pm, Nathaniel Hall wrote: ?php $MAC = system(arp 192.168.200.254); echo $MAC; ? does not give me any

Re: [PHP] Find MAC Address in PHP

2007-04-24 Thread Davi
Em Terça 24 Abril 2007 10:49, Tijnema ! escreveu: On 4/24/07, Davi [EMAIL PROTECTED] wrote: How you'll type your root pwd? =P Something with the proc_* functions as you need bi-directional streams (input/output). Something like this: (not tested, partly copied form example 1926) ?php

Re: [PHP] Find MAC Address in PHP

2007-04-23 Thread Davi
-- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Most people will listen to your unreasonable demands, if you'll consider their unacceptable offer. pgp7magXR3qDc.pgp Description: PGP signature

Re: [PHP] Best practices to ensure compatibility with PHP 6

2007-04-22 Thread Davi
a look at PHP metting [1] and PHP-wiki [2]... =] [1] - http://www.php.net/~derick/meeting-notes.html [2] - http://oss.backendmedia.com/PhP60 -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Many have marked the speed with which Muad'Dib learned the necessities of Arrakis

Re: [PHP] Problem with characters

2007-04-20 Thread Davi
); inside of /tmp/ttt.txt I can see Vérifie que le service Charset issue?? =P What's the charset of your DB? What's the charset of your Debian sys? -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Carpal Tunnel Syndrome? No. Lumber Lung? No. Jugglers despair

Re: [PHP] How to detect charset encoding with PHP and command line?

2007-04-17 Thread Davi
mac.txt: ASCII text [EMAIL PROTECTED] ~/documentos/txt $ file noob.txt noob.txt: UTF-8 Unicode text [EMAIL PROTECTED] ~/documentos/txt $ file endereços.txt endereços.txt: ASCII text [EMAIL PROTECTED] ~/documentos/txt $ file coisas.txt coisas.txt: UTF-8 Unicode English text -- Davi Vidal [EMAIL

Re: [PHP] location of the PHP executable

2007-04-12 Thread Davi
and Settings/Davi/Desktop/stellar/codigo/php/combate.php /mnt/win1/Documents and Settings/Davi/Meus documentos/stellar/codigo/php/combate.php /mnt/win3/backup 021106/Desktop/jogos/combate.php /mnt/win3/backup 021106/Desktop/stellar/combate.php /mnt/win3/backup 021106/Desktop/stellar/stellar

Re: [PHP] location of the PHP executable

2007-04-11 Thread Davi
cd / ls php -Rv END-IF END-IF END-IF ELSE cd \ dir php*.exe /s END-IF Check if I don't miss any END-IF... =P []s -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: rugged, adj.: Too heavy to lift. -- PHP General Mailing List (http://www.php.net

Re: [PHP] Oputting Forms Within a Class

2007-04-10 Thread Davi
buildInt(){ echo MY_FORM !--Script 10.1- calculator.php-- form action=calculator.php method=post //Form elements omitted for brevity /form MY_FORM; } Enjoy!! =] [1] - http://www.php.net/manual/en/function.echo.php -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com

Re: [PHP] Re: MySQL exceptions

2007-04-10 Thread Davi
/advantages.html -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: You know you're using the computer too much when: when your life becomes routine enough to write a script to do it for you. -- smonijhay1 -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] keeping credit card info in session

2007-04-09 Thread Davi
solution... And use the max security you can and charge for security updates!! =P It's what *I* would do, at least... Thanks again, Siavash Well... Sorry my poor english and let me known if you don't understand *anything*... -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com

Re: [PHP] Session Authentication

2007-04-09 Thread Davi
that, the answer to your question is... not unless your code is exploitable to allow the user to arbitratily set session variables. -Stut Sessions are stored in the temporary's server folder... So... If I known my session ID and where it's stored, I can do something... -- Davi Vidal [EMAIL PROTECTED

Re: [PHP] Session Authentication

2007-04-09 Thread Davi
authenticated, also storing a username? And if that's not the case, then you could authenticate by creating a cookie where it says authenticated = yes, and you're authenticated... Tijnema ... and we get a security crater... =] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com

Re: [PHP] Session Authentication

2007-04-09 Thread Davi
Em Segunda 09 Abril 2007 13:05, Robert Cummings escreveu: (...) Hasn't anyone here had a boring day (yeears ago) when they created an auto vote bot for some stupid poll? :B I never do this!!! =P But I changed a cookie of an browser game XD -- Davi Vidal [EMAIL PROTECTED] [EMAIL

Re: [PHP] Session Authentication

2007-04-09 Thread Davi
Em Segunda 09 Abril 2007 13:47, Martin Marques escreveu: Davi escribió: Sessions are stored in the temporary's server folder... So... If I known my session ID and where it's stored, I can do something... Have you tried it? I mean, as a non-root, non-apache user. :-P No. And I known

Re: [PHP] mysql if empty

2007-04-09 Thread Davi
) $results=mysql_num_rows($result) if($results==0) { echo no result found; } elseif($results0) { echo Some error? .mysql_error(); } else { //your code here } -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: I imagine bugs and girls have a dim perception that nature

[PHP] MySQL exceptions

2007-04-09 Thread Davi
Hi all! I'm developing an OOP app using PHP 5. I want to use try-catch with mysql functions. So, the question is: what are the exceptions classes of MySQL? Where can I found it? TIA -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: BOFH Excuse #426: internet

Re: [PHP] Re: MySQL exceptions

2007-04-09 Thread Davi
(SELECT_EXCEPTION $e) { echo Impossible select db: .$e-get_message(); } catch (ANOTHER_USEFUL_EXCEPTION $e) { echo another error: .$e-get_message(); } catch (Exception $e) { echo Unknown error: .$e-get_message(); } I'm right? TIA -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com

Re: [PHP] Question on Portfoilo's

2007-04-09 Thread Davi
What about you develop your personal web log? Later, you can develop your own personal calendar, to schelude that importante meeting... And going to make your own portfoilo... =] -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Al, there are plenty of good people

Re: [PHP] keeping credit card info in session

2007-04-08 Thread Davi
... BTW, I liked your solution (store in DB)... I would use it... []s -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money it values more, it will lose

Re: [PHP] keeping credit card info in session

2007-04-08 Thread Davi
] - www.f2b.com.br -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: FORTUNE'S RANDOM QUOTES FROM MATCH GAME 75, NO. 1: Gene Rayburn: We'd like to close with a thought for the day, friends --- something ... Someone: (interrupting) Uh-oh Gene Rayburn

Re: [PHP] keeping credit card info in session

2007-04-08 Thread Davi
Em Domingo 08 Abril 2007 18:54, Jochem Maas escreveu: So... What about PayPal or another similar service?? =] well: a, your not paypal or F2B. b, they are both payment providers. Sorry... I didn't understand! =x []s -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com

Re: [PHP] storing functions

2007-04-04 Thread Davi
a better way to store/recall functions? R. For my projects, I'm using OOP... =] But if your projects are just contact forms, you don't need OOP. I believe that just split your files is a good way! =] []s -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Fortune finishes

Re: [PHP] Ide help needed

2007-04-01 Thread Davi
and also tell me some other IDE's if possible Does anyone knows any IDE for PHP like VisualStudio.net? TIA -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Beneath this stone lies Murphy, They buried him today, He lived the life of Riley, While Riley was away. -- PHP General

Re: [PHP] simple page not found 404 script - PHP

2007-03-30 Thread Davi
=http://www.mypage.com/arc_inc.htm o/ -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: The government is not the surplus's money, Vice President. George W. Bush November 5, 2000 From The Washington Post. -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] simple page not found 404 script - PHP

2007-03-30 Thread Davi
) { if ( file_exists ( HTML.$_GET[catcode]...$file_ext ) ) { $exists = true; break; } } if ( ! ( $exists ) ){ include ( 404.php ); } else { include ( HTML.$_GET[catcode]...$file_ext ); } ? -- Davi Vidal [EMAIL PROTECTED] [EMAIL

Re: [PHP] simple page not found 404 script - PHP

2007-03-30 Thread Davi
=art http://arubaguide.org/arubaguide/categories.php?catcode=blabla Well... Check some typing issue... =P This code is working for me... =] http://www.turbineseusite.com.br/index.php?cat=contate-nos http://www.turbineseusite.com.br/index.php?cat=blablabla []s -- Davi Vidal [EMAIL PROTECTED

Re: [PHP] Ide help needed

2007-03-30 Thread Davi
and also tell me some other IDE's if possible Zend Studio. http://www.zend.com []s -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: I did this 'cause Linux gives me a woody. It doesn't generate revenue. -- Dave '-ddt-` Taylor, announcing DOOM for Linux -- PHP General

Re: [PHP] simple page not found 404 script - PHP

2007-03-30 Thread Davi
'); exit; } ? Try $found_catcode=$row_show_cat['catdode']; instead $found_catcode = $show_cat['catcode']; -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Marge: You will not be getting a tattoo for Christmas. Homer: Yeah. If you want one, you'll have to pay

Re: [PHP] simple page not found 404 script - PHP

2007-03-30 Thread Davi
My mistake: Try $found_catcode=$row_show_cat['catcode']; -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Thus mathematics may be defined as the subject in which we never know what we are talking about, nor whether what we are saying is true

Re: [PHP] Parse error help.., thanks..

2007-03-30 Thread Davi
$dir = opendir(SEARCH_DIR); 12 while($file = readdir($dir)) 13 if($file != '.' $file != '..' $file != THIS_FILE 14 amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;am 15 p;amp;amp; $file != CACHE_FILE) 16 { 17 $files[] = $file; 18 } Try remove the amp;s... []s -- Davi

[PHP] PHP Upgrade: 5 or 6

2007-03-28 Thread Davi
Hi all. I've reading on some sites [1,2] that PHP 6 is comming soon... What should I do? Migrate my server and apps to PHP 5 now and, later to PHP 6, or wait some more time and migrate all to PHP 6? TIA -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: The main thing

Re: [PHP] PHP Session variable

2007-03-27 Thread Davi
, $_GET and $_POST instead $_HTTP_SESSION_VARS and $_REQUEST... best regards, -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: A young girl once committed suicide because her mother refused her a new bonnet. Coroner's verdict: Death from excessive spunk

Re: [PHP] POST + QUERY

2007-03-27 Thread Davi
Em Terça 27 Março 2007 17:02, Dave Goodchild escreveu: use: $_POST['max_id'] == or even better: if (empty($_POST['max_id'])) Why not: if (!(isset($_POST[max_id))) ? -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Around computers it is difficult to find

Re: [PHP] Language detection with PHP

2007-03-27 Thread Davi
-- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: Take a lesson from the whale; the only time he gets speared is when he raises to spout. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] POST + QUERY

2007-03-27 Thread Davi
) it returns nothing at all. How about: print_r($row_info); ?? -- Davi Vidal [EMAIL PROTECTED] [EMAIL PROTECTED] -- Agora com fortune: agaffney I want to be so bleeding edge that I cut myself! robbat2 agaffney, no, that's just emo agaffney Gentoo is emo :P -- PHP General Mailing List (http

Re: [PHP] POST + QUERY

2007-03-27 Thread Davi
returns nothing. On 3/27/07, Davi [EMAIL PROTECTED] wrote: Em Terça 27 Março 2007 17:40, Dan Shirah escreveu: I have echoed something out after virtually every line of code :) When I echo out my result ($result_info) it returns Resource id#2 When I echo out my

Re: [PHP] POST + QUERY

2007-03-27 Thread Davi
$cc_first;* the above echo still returns nothing. On 3/27/07, Davi [EMAIL PROTECTED] wrote: Em Terça 27 Março 2007 17:40, Dan Shirah escreveu: I have echoed something out after virtually every line of code :) When I echo out my result ($result_info

[PHP] INFORMIX (PLEASE)

2003-08-18 Thread Davi José Faria Costa
... Somebody please, help me. My environment is the following one: - COMPUTER K6-2 500 - HD 10GB, MEM RAM 64 MB - WINDOWS 2000 ADVANCED SERVER - INFORMIX NT 7.31 Thanks! Davi Costa