[PHP-DB] issue with accents from a mysql table

2005-02-11 Thread mario
welcome. Thanks a lot see you tomorrow morning. mario -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Accents! Pls help. Still very confused.

2005-02-23 Thread mario
Hello, I am still very puzzled. If you a couple of minutes of spare time, pls give a look at http://www.chiari.org/help/ and suggest a way out. Thanks a lot. mario -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] HTML Tables in PHP...

2005-09-26 Thread mario
On Sun, 2005-09-25 at 13:35, Daryl Booth wrote: > > $nachricht="The licence doesn't exist please contact us! "; close string! > > echo open string! " \"694\" and so on height=\"501\" border=\"0\" align=\"center\" &

Re: [PHP-DB] HTML Tables in PHP...

2005-09-26 Thread mario
nice) book index. Is there some more documentation? Maybe something from C? thanks regards mario On Mon, 2005-09-26 at 06:01, Rasmus Lerdorf wrote: > There are many ways to do it. I prefer one of these two: > >echo << > EOB; > ?> > > or. > > width=&q

Re: Re[2]: [PHP-DB] HTML Tables in PHP...

2005-09-26 Thread mario
Hello, silly it was, indeed. I see now on THE book, chp.4, paragraph Here Documents. Thanks a lot mario -- On Mon, 2005-09-26 at 10:20, Amol Hatwar wrote: > Hello mario, > > Monday, September 26, 2005, 4:26:20 PM, you wrote: > > > hi, > > >

[PHP-DB] OT BibX mysql, and php

2005-11-06 Thread mario
and its whareabouts, pls. let me know. Thanks a lot, regards mario -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] database for books question

2006-01-22 Thread mario
(search word: book) you may find at least a couple of interesting things. Indeed, if you some spare time and like to do some programming, it would be nice to have more people who help to improve them. Typo3 is somehow difficult but truly rewarding. regards mario On Sat, 2006-01-21 at 15:32 -0600

[PHP-DB] Simple question on auto_increment

2006-11-13 Thread mario
queries? Is there some trick I may use? Thanks Regards mario -- mario <[EMAIL PROTECTED]> -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Simple question on auto_increment

2006-11-13 Thread mario
WOW! perfect, thanks a lot mario On Mon, 2006-11-13 at 16:16 -0500, Brad Bonkoski wrote: > mario wrote: > > Hello, > > > > really a mysql question. Pls. help anyway. > > > > Is there a simple, common way to implemt the following: > > Say I have a table wi

Re: [PHP-DB] Am I missing something?

2007-01-28 Thread mario
Hi, I use somethin as $sql = 'INSERT INTO `text` (`Field`) VALUES (''aaa'')'; Also, check things with var_dump, use mysql_error, echo $sql/$insert and check whether the query is well formed. my best mario On Sat, 2007-01-27 at 19:55 -0600, Alexander wrote: >

RE: [PHP-DB] Scheduling php task

2001-03-05 Thread Cosenza, Mario
e called 'php'. Use can use this to process you php scripts from the command line ('php test.php'). They just warn you not to put this in your web directory, because it can be used against you to compromise your security. Hope it helps, Mario -Original Message- From: V

[PHP-DB] Firebird and PHP

2004-11-18 Thread Mario Lacunza
Hello, Is possible work with Firebird ? and how? Thanks and advance!! Mario Lacunza Lima-Peru -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] PHP and MySQL form problem - Undifined variables

2002-10-25 Thread Mario Montag
form issue but it did not resolve my problem. It must be simple but I don't know enough to identify the issue. Thanks for any help or input. Mario [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] php with IIS

2007-03-08 Thread Mario Brandt
Hello, the DB list is not for such a question! Please RTM! http://de.php.net/manual/en/install.windows.iis.php regards Mario -Ursprüngliche Nachricht- Von: Harpreet [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 8. März 2007 16:57 An: php-windows@lists.php.net; php-db@lists.php.net

AW: [PHP-DB] IE6 & PHP

2007-04-13 Thread Mario Brandt
After each row .cleaner { clear:both; height:0.625em; font-size:1px; border:none; margin:0; padding:0; background:transparent; } :-P -Ursprüngliche Nachricht- Von: Chris [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 13. April 2007 0

[PHP-DB] Need Advice on Installing PHP & MySQL on Mac OSX

2002-08-10 Thread Mario A. Salinas
Hi Everyone, My name is Mario Salinas. I'm wondering if anyone on this list has had any experience installing PHP and MySQL on a Apple Laptop running Mac OS-X. If anyone has any advice and is feeling a little generous with their time, I'd love some help. I just can't seem

Re: [PHP-DB] Need Advice on Installing PHP & MySQL on Mac OSX

2002-08-10 Thread Mario A. Salinas
ction error has occurred' errors. This happens after a long period of time that the 'E' drone in Explorer turns for about 20 seconds. I even tried to find the php.ini file to see if there is some setting for this and couldn't find it. Any further ideas? Your help is GREAT

Re: [PHP-DB] help with PHP and mysql

2001-02-13 Thread Mario Henrique Cruz Torres
.mysql.com Bye. Mario H.C.T. I'm Sorrry by my poor English. -- PHP Database 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-DB] Apache + PHP4

2001-03-14 Thread Mario Henrique Cruz Torres
Mario Henrique Cruz Torres wrote: > Hello people, I have an Apache server running with PHP3, yesterday I > installed PHP4, and changed httpd.conf to run php4 scripts, but when I try to > see a php page, my browser asks if I want to download the file. I´m want know > how a htt

[PHP] Re: [PHP-DB] Query - Grouping Results

2001-03-19 Thread Mario Henrique Cruz Torres
You can put this : SELECT users.name AS name, user_logins.ip AS ip, UNIX_TIMESTAMP(user_logins.time) AS time FROM users, user_logins WHERE user_logins.user_id = users.id ORDER BY time ASC GROUP BY users.name See the GROUP BY statement at mysql docs. Mario H.C.T. Jordan Elver wrote: >