[PHP] PHP MS Sequel Server

2010-01-17 Thread dealtek
http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/ This article seems to sate that PHP can interface with MS Sequel Server ? If so, is it about the same level of complexity as working with PHP MySQL? If one was to choose php one DB over the other in a general comparison

Re: [PHP] Creating an Entire .html page with PHP

2010-01-27 Thread dealtek
On 1/26/2010 6:08 PM, clanc...@cybec.com.au wrote: In principle this is extremely simple. Take your existing procedure to generate the page then: 1. $page = ''; 2. Replace every echo 'whatever'; statement with $page .= 'whatever';, and everyhtml with $page .= 'html'; 3.

[PHP] Setting up a 2 Column Display for SQL Recordset

2010-08-13 Thread DealTek
-100 records) is on the left column and part 2 (101 - 200 records) is on the right column. Q: I'm not quite sure how to split / display the records ... Is there some kind of internal sql rec number that I can monitor? What is the best way to set this up? -- Thanks, Dave - DealTek deal

[PHP] Updating Multiple rows in mysql w php at once (newbie)

2010-08-13 Thread DealTek
echo $c; ? ... (2 - text) input name =favorite?php echo $c; ? ... (3 - text) input name =favorite?php echo $c; ? ... (4 - text) ...not sure how to loop thru these on the response / update page to get them updating correctly -- Thanks, Dave - DealTek deal...@gmail.com [db-10]

[PHP] Newbie security database connection question

2011-08-19 Thread DealTek
to communicate from the website to the MySQL data source that is somehow sending encrypted information rather than clear text back and forth? Thanks in advance for your help. -- Thanks, Dave - DealTek deal...@gmail.com [db-11] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Geo IP Location help needed...

2011-10-24 Thread DealTek
that particular IP is NOT seen by Geo IP Location? We just installed the latest version (I think) yesterday Is it reading from some old outdated database - or Q: Is there some code that can ALWAYS tell the country name of the IP? -- Thanks, Dave - DealTek deal...@gmail.com [db-11] -- PHP

Re: [PHP] Geo IP Location help needed...

2011-10-24 Thread DealTek
On Oct 24, 2011, at 6:23 PM, Bastien wrote: On 2011-10-24, at 9:07 PM, DealTek deal...@gmail.com wrote: Dave, If the IP is showing, could there be some left over debug in some function? If the IP is not in your list it could be anything from a new range for a region to IP

Re: [PHP] Working on a Subsummary Report

2011-12-16 Thread DealTek
sub head 3--- Prod 3 --- sales prod data 5 --- sales prod data 6 etc any other hints will help a lot... -- Thanks, Dave - DealTek deal...@gmail.com [db-11] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Working on a Subsummary Report

2011-12-16 Thread DealTek
tdnbsp;/td tdnbsp;/td /tr ?php }; ? ?php } while ($row_get1 = mysql_fetch_assoc($get1)); ? -- -- Thanks, Dave - DealTek deal...@gmail.com [db-11] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Working on a Subsummary Report

2011-12-17 Thread DealTek
(only 2 products needed for this) 4 - html for now 5 - for now just display and printing like: JAN 2011 --- PRODUCT 1 data row 1 data row 2 --- PRODUCT 2 data row 3 data row 4 like that... - thanks for checking this out -- Thanks, Dave - DealTek deal...@gmail.com [db-11]

Re: [PHP] Working on a Subsummary Report

2011-12-17 Thread DealTek
I try to loop through 2x ... - the table 2 only shows 1 record.. - Q: ... like the query number row number? needs to be reset - but how? So is it not possible to loop more than 1x? Is that why we are loading into array? -- Thanks, Dave - DealTek deal...@gmail.com [db-11] -- PHP General

[PHP] Noobie starting to learn OOP for databases needs help

2012-12-16 Thread dealTek
... what I tried seemed to fail... And if anyone can point to some good OOP training URL's I'd appreciate it. Thanks in advance for any assistance... -- Thanks, Dave - DealTek deal...@gmail.com [db-12] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Noobie starting to learn OOP for databases needs help

2012-12-16 Thread dealTek
On Dec 16, 2012, at 10:08 AM, Sebastian Krebs krebs@gmail.com wrote: 2012/12/16 dealTek deal...@gmail.com Hi all, Noobie starting to learn oop for databases from here: https://github.com/JeffreyWay/PHP-MySQL-Database-Class/blob/master/MysqlDb.php I've got lots working but have

[PHP] newbie with imap_mail_move

2013-02-09 Thread dealTek
); imap_mail_move($mbox,$messageset,$newmbox_name); imap_expunge($mbox); } imap_close($mbox); ? -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread dealTek
/forums/topic/223360-connect-to-your-database-using-oop-php5-with-mysql-and-mysqli/ http://snipplr.com/view/8417/ http://snipplr.com/view/12535/ any assistance is appreciated! -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread dealTek
On Feb 14, 2013, at 9:49 AM, dealTek deal...@gmail.com wrote: Hi everybody, Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD) Simple story: creating this class database by myself is way over my head. So it be best for me to find something

Re: [PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-15 Thread dealTek
Thanks Bastien, I imagine this is what you were referring to? http://www.dreamincode.net/forums/topic/54239-introduction-to-mysqli-and-prepared-statements/ -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-15 Thread dealTek
; } } ? -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Newbie Question - Parse XML with PHP...

2013-04-19 Thread dealTek
tax-typesales/tax-type alternate-tax-id12345/alternate-tax-id /product /response -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] Newbie Question - Parse XML with PHP...

2013-04-19 Thread dealTek
hope I am making myself clear Thanks in advance for the help Or you use a specialized library like Guzzle. Am 19.04.2013 22:17 schrieb dealTek deal...@gmail.com: Hi all, newbie - just starting with trying to parse XML... $mylist = simplexml_load_file('thelist.xml'); then use

Re: [PHP] Newbie Question - Parse XML with PHP...

2013-04-19 Thread dealTek
dom easier function appendXmlNode($parentNode,$name, $value) { $tempNode = new DOMElement($name,$value); $parentNode-appendChild($tempNode); } ? -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] looking for a PDF generator class/library for PHP 5?

2013-05-17 Thread dealTek
to split it up without losing part of the font when crossing page boundaries etc... -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Moving from mysql functions to mysqli or PDO - which is best?

2013-05-18 Thread dealTek
- DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] looking for a PDF generator class/library for PHP 5?

2013-05-18 Thread dealTek
Thanks Jose and Ali - I will look into them. -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] Moving from mysql functions to mysqli or PDO - which is best?

2013-05-23 Thread dealTek
would be a better starting point. Thanks in advance! -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Can javascript or php help with this

2013-05-25 Thread dealTek
this up prior to submitting the form. -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Can javascript or php help with this

2013-05-25 Thread dealTek
. And of course - you could try posting on a js site instead of a php one. Thanks so much Jim - I will check into this (and I did just join a javascript list) -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] Can javascript or php help with this

2013-05-26 Thread dealTek
On May 26, 2013, at 5:48 AM, Jim Giner jim.gi...@albanyhandball.com wrote: On 5/25/2013 9:11 PM, dealTek wrote: On May 25, 2013, at 4:30 PM, Jim Giner jim.gi...@albanyhandball.com wrote: So - create another field on your form. Add an onclick event to your submit button. Have it run

[PHP] Looking for a good working PDO and/or mysqli database class to get started with OOP

2013-05-30 Thread dealTek
-it-correctly/ http://www.phpclasses.org/package/7533-PHP-Access-SQL-databases-using-PDO.html http://www.doctrine-project.org/projects/dbal.html http://pear.php.net/package/MDB2 -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] Looking for a good working PDO and/or mysqli database class to get started with OOP

2013-05-31 Thread dealTek
-- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Using Table prefixes

2013-06-08 Thread dealTek
ago to use a prefix tbl_ like tbl_Mytable but I don't really see much need for this by itself ... Am I missing something? -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Detect and Redirect Mobile Users

2013-06-12 Thread dealTek
right now. Thanks in advance - Dave -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] newbie PDO query display question

2013-06-16 Thread dealTek
... Q: How do I display the columns without a loop these fail - so what will work echo $results[First]; echo $results[First][0]; ??? echo $results[First][1]; ??? -- Thanks, Dave r...@musenet.com [db-3] -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] newbie PDO query display question

2013-06-16 Thread dealTek
]; ??? While works better than foreach for getting the result rows from PDO -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

Re: [PHP] newbie PDO query display question

2013-06-16 Thread dealTek
for your help Stephen - I will try this asap! -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Making a Timeout Expiration Length to Session Variables

2013-07-07 Thread dealTek
- DealTek deal...@gmail.com [db-3]

[PHP] query order issue

2013-07-20 Thread dealTek
for a second... Q: I would have thought that it would not go past the line - meta http-equiv=refresh - but it does any insight on this -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Session Vars not staying active

2013-08-03 Thread dealTek
. -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Session_unset - session_destroy issue

2013-08-15 Thread dealTek
SESSIONS? ?php session_start(); $_SESSION['var1'] = 'test1'; echo 'br / test1 '. $_SESSION['var1'].' '; session_unset(); session_destroy(); $_SESSION = array(); $_SESSION['var1'] = 'test2'; echo 'br / test2 ' . $_SESSION['var1']; ? -- Thanks, Dave - DealTek deal...@gmail.com [db-3]

[PHP] Sending PHP mail with Authentication

2013-09-25 Thread dealTek
/PHP_Email_SMTP_Authentication.htm -- Thanks, Dave - DealTek deal...@gmail.com [db-3] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php