[PHP-DB] PHP/MySQL UTF-8 SNAFU

2007-07-12 Thread Charles Sheinin
Ok, so I have a fully UTF-8 MySQL database with a fully UTF-8 table. I have a php page which has "content="application/xhtml+xml; charset=utf-8" />" at the top of the html section and "mysql_set_charset("utf8");" after my connection (it's php 2.2.3, so that's more or less the same as "mysql_quer

Re: [PHP-DB] PHP/MySQL UTF-8 SNAFU

2007-07-12 Thread Niel
Hi What functions are you using? Many of PHP's functions are not multibyte aware and default to ASCII. I had this problems myself end of last year. -- Niel Archer -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Individual Array Entries

2007-07-12 Thread Keith Spiller
Hi Everyone, RE: Individual Array Entries I am using a mini calendar script which uses the following array to enter event dates. $days = array( 3=>array("/weblog/archive/2004/Jan/03","linked-day"), 8=>array("/weblog/archive/2004/Jan/08","linked-day"), 22=>array("/weblog/archive/200

Re: [PHP-DB] Individual Array Entries

2007-07-12 Thread Keith Spiller
I am using a mini calendar script which uses the following array to enter event dates. $days = array( 3=>array("/weblog/archive/2004/Jan/03","linked-day"), 8=>array("/weblog/archive/2004/Jan/08","linked-day"), 22=>array("/weblog/archive/2004/Jan/22","linked-day") ); // 3, 8 & 22 = th

[PHP-DB] PHP & MySQL Issue!

2007-07-12 Thread Austin C
Hello everyone, im trying to use PHP to create 2 tables in a database and populate them with tables, however, it just wont work. Here is my full code: Install- Processing Database Info . . . . . "; $cxn = mysqli_connect($hostname,$dbusername,$dbpassword,$dbname) or die ("Basic Library Sy

Re: [PHP-DB] PHP & MySQL Issue!

2007-07-12 Thread Austin C
Hello, I dont get any errors. Just a blank page. But, I go to the database, and it did what I told it to with the header table, but not with the circulation table. On 7/12/07, Niel <[EMAIL PROTECTED]> wrote: Hi Give us a clue? What's the error(s) you get returned? -- Niel Archer -- PHP Databa

Re: [PHP-DB] PHP & MySQL Issue!

2007-07-12 Thread bedul
- Original Message - From: "Austin C" <[EMAIL PROTECTED]> To: Sent: Friday, July 13, 2007 8:41 AM Subject: [PHP-DB] PHP & MySQL Issue! > Hello everyone, im trying to use PHP to create 2 tables in a database and > populate them with tables, however, it just wont work. Here is my full co

Re: [PHP-DB] PHP & MySQL Issue!

2007-07-12 Thread Niel
Hi Give us a clue? What's the error(s) you get returned? -- Niel Archer -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] PHP & MySQL Issue!

2007-07-12 Thread Chris
Austin C wrote: Hello everyone, im trying to use PHP to create 2 tables in a database and populate them with tables, however, it just wont work. Where does it stop working? Looks fine from what you've shown us but you need to track down the problem a bit further. -- Postgresql & php tutoria