connection specific question414 (6/19/2007 11:09:11 PM) comp.lang.php Hello, Whenever the PHP documentation references the optional link_identifier parameter in many mysql related functions (such as mysql_query, mysql_insert_id, etc.), it says: "The MySQL connection. If the l... Marcus
problem with mb_detect_encoding112 (8/9/2006 7:05:57 PM) comp.lang.php I am trying to determine if data entered in a $_POST variable in a form contains all ASCII (0 - 127) characters or not. To do this I am using mb_detect_encoding(). I am running into problems with non-Englis... Marcus
joins in mysql222 (8/5/2006 6:00:54 PM) comp.databases.mysql Hello, I've read numerous articles on the web advocating avoiding joins in MySQL whenever possible for performance reasons. I was curious as to just how slow a simple equi-join would be, so I ran some tests... Marcus
help with regex429 (8/3/2006 9:59:30 PM) comp.lang.php Hello, I am trying to include the literal '\' (backslash) character in a regex. I am not sure if I need to escape it, however... From http://www.regular-expressions.info/charclass.html: "To include a back... Marcus
question about GMT and UTC1219 (7/31/2006 9:42:55 PM) comp.lang.php Hello, I need a timezone to store timestamps in that is independent of daylight saving. From everything I've read, it seems I want either GMT or UTC. The only problem is I can't figure out from any document... Marcus
mktime and daylight saving022 (7/29/2006 8:21:14 PM) comp.lang.php Hello, Is mktime() dependent on PHP or the server's OS? I just read that starting next year, the time switches for daylight saving time will be "on the second Sunday of March and end the first Sunday of Nov... Marcus
get server timezone117 (7/29/2006 4:19:52 PM) comp.lang.php Hello, As far as I can tell from the php.net documentation and other documentation I've seen, date("T") should return the server timezone in 3-character format, i.e. EST, MST, etc... http://www.php.net/manu... Marcus
$cfg['Lang'] in phpMyAdmin config017 (7/10/2006 4:54:09 AM) comp.lang.php Hello, I am trying to configure phpMyAdmin 2.8.2. I un-commented the following line in config.inc.php: // Force: always use this language - must be defined in // libraries/select_lang.lib.php $cfg['L... Marcus
phpMyAdmin installation217 (7/8/2006 10:07:56 PM) comp.lang.php Hello, I am trying to install phpMyAdmin 2.8.2 and have a question about config.inc.php. Is it necessary to include all of the $cfg fields in config.default.php, or is it ok to just have whichever fields I ... Marcus
Lock_tables_priv112 (7/8/2006 1:24:21 AM) comp.lang.php After much searching, this is the most info I could find on the Lock_tables_priv privilege in the mysql system database: from mysql.com... The LOCK TABLES privilege enables the use of explicit LOCK TABLES st... Marcus
connection specific question414 (6/19/2007 11:09:11 PM) comp.lang.php Hello, Whenever the PHP documentation references the optional link_identifier parameter in many mysql related functions (such as mysql_query, mysql_insert_id, etc.), it says: "The MySQL connection. If the l... JumpMan222(103)
help with regex429 (8/3/2006 9:59:30 PM) comp.lang.php Hello, I am trying to include the literal '\' (backslash) character in a regex. I am not sure if I need to escape it, however... From http://www.regular-expressions.info/charclass.html: "To include a back... JumpMan222(103)
question about GMT and UTC1219 (7/31/2006 9:42:55 PM) comp.lang.php Hello, I need a timezone to store timestamps in that is independent of daylight saving. From everything I've read, it seems I want either GMT or UTC. The only problem is I can't figure out from any document... JumpMan222(103)
phpMyAdmin problem522 (7/3/2006 4:28:37 PM) comp.lang.php Hello, I am having a problem with a query in phpMyAdmin... it works fine on my localhost, but the exact same query produces an error in phpMyAdmin on my server: localhost: PHP 4.3.11, MySQL 4.1.12, phpMyAdm... JumpMan222(103)
MySQL character sets133 (6/26/2006 11:26:43 PM) comp.lang.php Hello, I recently upgraded from 4.0 to 4.1. I've spent the last few days reading up on charsets since I never really thought about it when I used 4.0. I thought I had most of it figured out, but then I saw... JumpMan222(103)
classes and var declarations412 (2/19/2006 1:23:24 AM) comp.lang.php Hello, I've read many places on the net that when using classes in PHP, all member variables must be declared via the 'var' keyword. I know that doing this creates all these variables when the object is fir... JumpMan222(103)
fingerprinting and HTTP_USER_AGENT723 (11/14/2005 8:10:11 AM) comp.lang.php I have read quite a few articles on "fingerprinting" a user when they start a session. Chris Shiflett has a good article here: http://shiflett.org/articles/the-truth-about-sessions However, this part of his... JumpMan222(103)
session cookies719 (11/14/2005 6:29:58 AM) comp.lang.php I know that when you start a session in PHP, the "cookie" it creates is not the same as those that are stored in your browser's temp folder, and instead is kept in RAM. I am confused because in every session... JumpMan222(103)
Question on Session330 (10/4/2005 4:12:38 AM) comp.lang.php Hi all! I am a newbie in PHP and I have a question on using $_SESSION. To keep it short, here is the code: A.php: window.location.href="B.php"; B.php: Assume username and pa... alucard001(10)