Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Marco Behnke
*function* when you can also use the echo language construct (better and faster). But read and learn http://de2.php.net/manual/en/function.print.php print is not actually a real function (it is a language construct) -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Zend Certified Engine

[PHP] Re: [PHP-DEV] PHP 5.5.0 final has been released!

2013-06-20 Thread Marco Pivetta
Well done! Congratulations! On 20 Jun 2013 23:23, "Julien Pauli" wrote: > Hello! > > The PHP Development Team would like to announce the immediate release of > PHP 5.5.0. This release includes a large number of new features and bug > fixes. > > A separate release announcement is also available. F

Re: [PHP] Having a problem with clone.

2013-05-11 Thread Marco Behnke
ost -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218 Seevetal http://www.behnke.biz signature.asc Description: OpenPGP digital signature

Re: [PHP] Need a tool to minimize HTML before storing in memecache

2013-05-03 Thread Marco Behnke
Am 03.05.2013 21:34, schrieb Daevid Vincent: -Original Message- From: Marco Behnke [mailto:ma...@behnke.biz] Sent: Friday, May 03, 2013 12:01 PM To: Daevid Vincent; php >> "php-general@lists.php.net" Subject: Re: [PHP] Need a tool to minimize HTML before storing in m

Re: [PHP] Need a tool to minimize HTML before storing in memecache

2013-05-03 Thread Marco Behnke
other variables you can load the dynamic data after the page load. With tidy, have you tried http://tidy.sourceforge.net/docs/quickref.html#preserve-entities http://tidy.sourceforge.net/docs/quickref.html#fix-uri Regards, Marco Am 03.05.13 19:40, schrieb Daevid Vincent: > Well we get about 30,000 p

Re: [PHP] A little confused

2013-04-23 Thread Marco Behnke
.php.net/manual/en/datetime.createfromformat.php Or try this http://de3.php.net/manual/en/function.strtotime.php $_SESSION['ExpiryDate'] = "2013-04-23"; $int_timestamp = strtotime($_SESSION['ExpiryDate']); echo date('D, \t\h\e jS \o\f M Y', $int_timestamp ); Use SINGLE QUO

Re: [PHP] self operator within a double quoted string

2013-04-17 Thread Marco Behnke
efix_{$this->object_prop}_postfix" . PHP_EOL; >> } >> } >> >> >> $foo = new Foo; >> $foo->printObjectProp(); >> >> >> Foo::printClassProp(); >> >> > Hi, > > This is a bug/feature in php and is just not possible.

Re: [PHP] Lasting syntax error when there's none

2013-04-09 Thread Marco Behnke
I - OS: Ubuntu 12.04 - Software: Ubuntu packages only (updated) - HTTP request handling: nginx load balancer → PHP FPM daemon - Machine: VMware Fusion (managed by Vagrant) hosted on OS X 10.8.3 Thanks, -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Zend Certified Engineer PHP 5.3

[PHP] JPGraph new GanttBar ... bar caption on left, right side

2013-04-09 Thread Meli Marco
ANENDE][$y], ( chr(32).$aData[PLANSTART][$y].' - '.$aData[PLANENDE][$y] ) ); Thanks. Marco. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session variable not persisting

2013-03-18 Thread Marco Behnke
x27;in'])<1000){ > $rand = rand(0, 100); > ?> > > } else { > var_dump($_SESSION); > } > > ?> > > ## > > In fact, when I run this on my server I randomly have empty entries in the >

Re: [PHP] mysql custom global defined variable

2013-03-13 Thread Marco Behnke
tages of using constants (which ever) are code completion to avoid spelling errors. I see no possible improvements here. > 2. In the mysql itself, does mysql also has global define functionality (like > the define in php) ? I also want to do kind of SELECT * FROM house WHERE type > = HOUS

Re: [PHP] Re: Generating CRUD code for normalized db

2013-03-13 Thread Marco Behnke
" Yii in a way, that creating models and views with Gii get proper SELECT Boxes and stuff for relations? If I understood you correct, this is what you were looking for? -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-M

Re: [PHP] Mystery foreach error

2013-03-12 Thread Marco Behnke
tches faulty > input and warns people in their browser to go back and re-enter the correct > data, so I'm at a loss as to why this is happening. > > How can I see what's triggering this to happen? I have the following > line in my php.ini: > > error_reporting

Re: [PHP] OOP to run sequential SQL queries?

2013-02-17 Thread Marco Behnke
4/10/who-needs-stored-procedures-anyways.html > > Now we're going to carry on in PHP, and my experience says that > we should write the solution in a procedural-style, instead of OOP. > > Is there any benefit to use OOP in these situations? > > Please share your thoughts.

Re: [PHP] APC opcode cache behavior

2013-02-14 Thread Marco Behnke
gt; php -r "apc_clear_cache();"). This way you'll avoid restarting the webserver > and it will clear all APC cache forcing APC to cache everything again. since apache and cli do not share the same apc, it will not work. -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diplom

Re: [PHP] Rewrite Help

2012-12-28 Thread Marco Behnke
On 28.12.2012 17:13, Floyd Resler wrote: On Dec 28, 2012, at 11:09 AM, Marco Behnke wrote: On 28.12.2012 16:30, Floyd Resler wrote: I'm having a perplexing problem with a rewrite rule (it's off topic but it's Friday!). My initial path is piccDetails/index/0/linetypes/201

Re: [PHP] Rewrite Help

2012-12-28 Thread Marco Behnke
On 28.12.2012 16:30, Floyd Resler wrote: I'm having a perplexing problem with a rewrite rule (it's off topic but it's Friday!). My initial path is piccDetails/index/0/linetypes/2012-01-01/2012-12-31/Successful and that works great. However, in my script I want to change the zero in the path

Re: [PHP] Session ?

2012-12-13 Thread Marco Behnke
x27;, >> 'On')? >> Just to be sure that there are no hidden notices or warnings. >> >> > my sub points to a folder within my domain's structure. My session's > store point (?) is \tmp. You asked two different questions. > point taken ;) I will

Re: [PHP] Session ?

2012-12-12 Thread Marco Behnke
Am 12.12.12 15:58, schrieb Jim Giner: > On 12/12/2012 8:08 AM, ma...@behnke.biz wrote: >> >> >> Jim Giner hat am 12. Dezember 2012 um >> 02:53 >> geschrieben: >>> On 12/11/2012 7:27 PM, Marco Behnke wrote: >>>> Am 08.12.12 19:08, schrieb Jim G

Re: [PHP] Session ?

2012-12-11 Thread Marco Behnke
n data is stored? (session_save_path)? -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218 Seevetal http://www.behnke.biz signature.asc Description:

Re: [PHP] Storing passwords in session variables

2012-12-11 Thread Marco Behnke
.http-auth.php -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218 Seevetal http://www.behnke.biz smime.p7s Description: S/MIME Kryptografische Unterschrift

Re: [PHP] Question

2012-11-03 Thread Marco Behnke
.4.8# ls /usr/local/bin > php-config phpize > > root:/usr/local/src/php-5.4.8# ls /usr/local/sbin > php-fpm > > Must under bin not be php-cgi and pear, or is my thinking wrong? maybe because of --disable-cgi > > > Thank you for help and Greetings > Silvio > -- Ma

Re: [PHP] TURBOPY cloud framework + IDE beta available NOW

2012-10-31 Thread Marco Behnke
t topic: http://stackoverflow.com/questions/1185605/when-to-use-static-vs-instantiated-classes -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218

Re: [PHP] TURBOPY cloud framework + IDE beta available NOW

2012-10-31 Thread Marco Behnke
he only way. Even > Rasmus has said he leans procedurally: > http://toys.lerdorf.com/archives/38-The-no-framework-PHP-MVC-framework.html Are you serious quoting that post? Posted by Rasmus <http://toys.lerdorf.com/authors/1-Rasmus> on Monday, February 27. 2006 > > Adam > -- M

Re: [PHP] Rest

2012-10-27 Thread Marco Behnke
t; Let us see what you have done so far towards your goal, so we can discuss on how we can improve it. -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21

Re: [PHP] TURBOPY cloud framework + IDE beta available NOW

2012-10-27 Thread Marco Behnke
And why PHP 5.2? And I am curious if you have developed a real templating engine or if you are going by eval()? From what I see, it looks a bit like that. But these are only my points. I browsed the pages, had no insight on the code. But I like your concept on the in place editing, that look

Re: [PHP] Differences

2012-10-04 Thread Marco Behnke
Am 04.10.12 02:48, schrieb David McGlone: > Hi everyone, I have been playing around with some code the list helped me > with > a while back and I'm not grasping the concept between return and echo and the > PHP manual doesn't answer this, unless I'm missing something. There is an > example at t

Re: RES: [PHP] fets() escaping some characters

2012-09-11 Thread Marco Behnke
hat string into a variable and outputting but it still doesn't show > the characters between the "<>". > > Any help is highly appreciated. > > Thanks > > -- > Best Regards, > Sunil Meena > > -- Marco Behnke Dipl. Informatiker (FH), SAE

Re: [PHP] How do I do count the occurrence of each word?

2012-08-18 Thread Marco Behnke
C822 is a word or not > (mixed letters and numbers). > > When you've arranged all that, splitting on white space is trivial: > > $words = preg_split('/[[:space:]]+/',$text); > > and then you just run through the words building an associative array > by increm

Re: [PHP] PHP session variables

2012-08-12 Thread Marco Behnke
ll session_write_close() as early as possible to avoid write locks on the users session file. And up from PHP 5.4 you can use http://de2.php.net/manual/de/function.session-status.php to check a session status. -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Cert

Re: [PHP] php safe mode no more?

2012-08-04 Thread Marco Behnke
ver setup for PHP appliactions is done with nginx + php-fpm. It is faster and uses less memory. -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218

Re: [PHP] PDO: extend or encapsulate?

2012-07-14 Thread Marco Behnke
n extend from it. If you simply extend PDO to use the PDO methods and add your own stuff, then inheritance is a bad idea. If you think of what you are doing here: You USE Pdo. So it is a component. This way you get the following benefits: - You can extend your class in your system from another cla

Re: [PHP] Exception Handling

2012-06-01 Thread Marco Behnke
Am 01.06.12 17:08, schrieb James Colannino: > > Hey Marco, > > Thanks for the reply! That was the first thing I checked. > > class Database_Exception extends \FuelException {} > class Fuel_Exception extends \Exception {} > > It's extending Exception, as expect

Re: [PHP] PHP & Database Problems -- Code Snippets - Any more Ideas?

2012-05-04 Thread Marco Behnke
to a query. ?> ?> Double closing tag? echo " $_GLOBALS[mdr] \n"; Quotes. $flag = 1; What's this? You really really should seperate your code from HTML. Please truncate your apache and php error log. Add error_reporting(E_ALL); ini_set('display_errors', &

Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-01 Thread Marco Behnke
with my script?? $message .= "Message: ".$m.""; As far as I can see your main html tags are missing? $message = '' . $message . ''; -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail:

Re: [PHP] SimpleXML and the Single String (SOLVED)

2012-02-22 Thread Marco Behnke
ion class? > To keep the code readable? $value = $xml->node; vs. $value = (String)$xml->node; I like the first one. Plus you handle it to dynamically to the right type function __get($value) { if is float return float casted value if is boolean ... and so on } -- Marco Behnke D

Re: [PHP] Wrong POSTFIELDS Posted

2012-02-17 Thread Marco Behnke
ess that I use an integer. All > other curl* commands are set. > > > Maybe you could provide a bit more of information. var_dump($_POST); // at the beginning of the script // the code that assembles $string // the target url for your curl request from curl_init or CURLOPT // the o

Re: [PHP] Turning a string into a condition

2012-02-16 Thread Marco Behnke
ile maintaning the flexibility, I'd be happy > to hear it. Marc Is math all you want to use? Parsing will be an easy doing and I am pretty sure there are a lot of examples around the web. E.g.: http://www.phpclasses.org/package/2695-PHP-Safely-evaluate-mathematical-expressions.htm

Re: [PHP] handle file_get_contents timeout including dns lookup time

2012-02-14 Thread Marco Behnke
t think this is possible with file_get_contents, but it should > work if you use cURL and set the CURLOPT_CONNECTTIMEOUT option. > > - Matijn That won't help. When you reach the sleep with your request, the connection is already established. What you want is curl with CURLOPT_T

Re: [PHP] Re: Long Live GOTO

2012-02-06 Thread Marco Behnke
Am 06.02.12 21:55, schrieb Adam Richardson: > On Mon, Feb 6, 2012 at 3:44 PM, Marco Behnke wrote: > >> Am 06.02.12 17:23, schrieb Alain Williams: >> >> many places to see if things should be done. That is just as bad as >> lots of GOTO -- often when having to wr

Re: [PHP] Re: Long Live GOTO

2012-02-06 Thread Marco Behnke
e where some $IsError variable is tested in > many places to see if things should be done. That is just as bad as > lots of GOTO -- often when having to write something like that I will > have a GOTO (in Good code uses Exceptions and try catch for that kind of scenarios. -- Marco Behnke D

Re: [PHP] Typecasting question

2012-02-03 Thread Marco Behnke
x27; => OPENSSL_KEYTYPE_RSA, > 'digest_algorithm' => 'sha256', > 'private_key_bits' => 512, > 'x509_extensions'=> 'usr_cert', > 'encrypt_key_cipher' => 'OPENSSL_CIPHER_3DES'

Re: [PHP] Autoloading

2012-02-01 Thread Marco Behnke
if (file_exists($path)) { require_once $path; } }; spl_autoload_register($callback); -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str.

Re: [PHP] passing variables to php script

2012-01-10 Thread Marco Behnke
r context? That would > make posting a form pretty pointless. Indeed. But isn't that the point? We are trying to figure out why his posting the form does not work. I say, it can't work as long as long as there is Q:\ ins his form action, no way it will do, because you leave your webserver

Re: [PHP] passing variables to php script

2012-01-10 Thread Marco Behnke
Am 10.01.12 21:28, schrieb Mike Mackintosh: > > On Jan 10, 2012, at 15:12, Marco Behnke wrote: > >> Am 10.01.12 21:07, schrieb Donovan Brooke: >>> David Savage wrote: >>>> OK...I admit I'm new at thisI have this html file: >>>> >>

Re: [PHP] passing variables to php script

2012-01-10 Thread Marco Behnke
action to simply "callrecs.php" and see if that works. -- Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3 Tel.: 0174 / 9722336 e-Mail: ma...@behnke.biz Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218 Seevetal http://www.behnke.biz smime.p7s Description: S/MIME Kryptografische Unterschrift

Re: [PHP] re: More Error Reporting Problems

2012-01-02 Thread Marco Behnke
Am 30.12.2011 17:11, schrieb Floyd Resler: On Dec 30, 2011, at 11:05 AM, Matt Graham wrote: I'm still not sure why they aren't displaying. But as long as I have a place to find them I'm cool with that. Maybe anything in your web application overrides display_errors? -- Ma

Re: [PHP] RE: How can I check for characters in a $_POST[] variable?

2011-09-22 Thread Marco Lanzotti
Il 22/09/2011 17:54, Eric ha scritto: > if(preg_match('(.*)^[A-Za-z0-9]+', $_POST['username']) !== 0) { Whi this '(.*)'? For '.' and '..' problem use is_file(). Bye, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What would you like to see in most in a text editor?

2011-09-16 Thread Marco Lanzotti
Il 13/09/2011 21:56, Brad Huskins ha scritto: > So I would like to get some feedback on what features people would > most want, since I am still at a very flexible stage in development. Configurable syntax highlight, autoindent and autocomplete. Bye, Marco -- PHP General Mailing List

Re: [PHP] Stop PHP execution on client connection closed

2011-09-15 Thread Marco Lanzotti
LT CHARSET=utf8; And this is an example query: SELECT COUNT(*) FROM TABLE1 WHERE Char1='A' AND Num2=10 The WHERE clause can contain any indexed column. Bye, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Stop PHP execution on client connection closed

2011-09-14 Thread Marco Lanzotti
rch > to > see if an SQL statement is running that has your unique value in it. Not so clean, but it could work! Thank you, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Stop PHP execution on client connection closed

2011-09-14 Thread Marco Lanzotti
elds in a 50M records table. Any query field is indexed and innodb uses 20GB of RAM to store data and indexes, but some queries take about 30 seconds to run. When user changes filters and asks for a new count, the old queries continue to run using DB resurces unnecessarily. Bye, Marco -- PHP General

Re: [PHP] Re: Stop PHP execution on client connection closed

2011-09-13 Thread Marco Lanzotti
x27;comet' or 'long polling.' Long polling requires script interaction. How can I interact while I'm waiting for query to be executed? Bye, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Stop PHP execution on client connection closed

2011-09-13 Thread Marco Lanzotti
detect > the aborted connection. The question is: how can I send data to client until I'm waiting for query execution? PHP thread support is not available in Apache enviroment. Bye, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Stop PHP execution on client connection closed

2011-09-13 Thread Marco Lanzotti
ted connenction. I know this function, but it's useless to solve my problem... Bye, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Stop PHP execution on client connection closed

2011-09-12 Thread Marco Lanzotti
PHP script doesn't stop until it send some output to client, so I need to wait query execution to know client aborted connection. How can I abort query (or script) when AJAX connection is aborted? Thank you, Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

[PHP] simplexml_load_file() improvement

2009-10-26 Thread Marco Barbieri
Hi all! This is my first mail, I hope I will use this mailing list in the correct mode. One of main advantages of SQL in the concorrent access of many script to the same database. I would like improve similar functions to the SimpleXML module. In particular, I want modify the simplexml_load_file()

[PHP] Please, I need help with curl and php

2008-07-29 Thread Marco Vallejo
Hi, I´m making a little application with php and curl, but I´m a newby with curl. Please help me with the next script. I used to use this in order to make a connection with an specific site on the console ms-dos (windows), how can i translate this into php code? curl -x proxy_url:proxy_port -U p

[PHP] hierselect with ajax

2007-07-25 Thread Marco Sottana
hi i am looking for a hier select with ajax a list of "select" that when i select the first an ajax script popolute the second and so on ... please help me

Re: [PHP] new forum

2007-06-08 Thread Marco Sottana
my server is on www.register.it at soon will be faster thanks :) - Original Message - From: "Tijnema" <[EMAIL PROTECTED]> To: "Marco Sottana" <[EMAIL PROTECTED]> Cc: Sent: Friday, June 08, 2007 11:08 AM Subject: Re: [PHP] new forum On 6/8/07,

[PHP] new forum

2007-06-08 Thread Marco Sottana
hi i am builing a new forum about pear .. www.myflashxml.it if anyone want to be a moderator of that forum contact me msn: [EMAIL PROTECTED] my icq: 210139517 my skype: marco xot

[PHP] source like smorty.com

2007-06-08 Thread Marco Sottana
anybody knows an open source like smorty.com ?

[PHP] [TEST] LINKS EXCHANGE

2007-05-28 Thread Marco Sottana
i would like to test www.3viso.com/addurl try to input your link and categories and tell me what you think about it thank a lot

[PHP] [CSS] help with a orizzotal menu

2007-05-24 Thread Marco Sottana
hi i have this Menu item 1Menu item 1.1Menu item 1.2Menu item 1.2.1Menu item 1.2.2Menu item 1.2.2.1Menu item 1.2.2.2Menu item 1.2.3Menu item 1.3Menu item 2Menu item 3Menu item 4 i would like to add a css and/or a javascript to skin this menu as a orizzontal menu with submenu orizzontal under

Re: [PHP] Re: instant messenger php + ajax

2007-05-24 Thread Marco Sottana
- Original Message - From: "Darren Whitlen" <[EMAIL PROTECTED]> To: Sent: Thursday, May 24, 2007 10:19 AM Subject: Re: [PHP] Re: instant messenger php + ajax Marco Sottana wrote: i would like a one to one chat .. no one to everybody - Original Message ---

Re: [PHP] Re: instant messenger php + ajax

2007-05-24 Thread Marco Sottana
i would like a one to one chat .. no one to everybody - Original Message - From: "Darren Whitlen" <[EMAIL PROTECTED]> To: Sent: Thursday, May 24, 2007 10:05 AM Subject: [PHP] Re: instant messenger php + ajax Marco Sottana wrote: hi i am looking for an instant mess

[PHP] instant messenger php + ajax

2007-05-24 Thread Marco Sottana
hi i am looking for an instant messenger for my web site i would like to enable also not register user to chat to the other not register user in my web site.. where i can find a source code like this ?

[PHP] google translation

2007-05-08 Thread Marco Sottana
hi there is any function that use google translation for translation some html ?

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
if you have nothing to say.. say nothing - Original Message - From: "Richard Lynch" <[EMAIL PROTECTED]> To: "Marco Sottana" <[EMAIL PROTECTED]> Cc: "Stut" <[EMAIL PROTECTED]>; Sent: Thursday, May 03, 2007 6:04 PM Subject: Re: [PHP] [opin

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
i am new ... say me .. 2 or 3 nice e-commerce and why is nice.. please.. - Original Message - From: "Stut" <[EMAIL PROTECTED]> To: "Marco Sottana" <[EMAIL PROTECTED]> Cc: Sent: Thursday, May 03, 2007 12:36 PM Subject: Re: [PHP] [opinions] Ashop Comme

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
eing ripped off. -Stut NB: I have never used Ashop Commerce, nor will I ever use it. These "opinions" are purely based on them spamming this mailing list for exposure. Marco Sottana wrote: - Original Message - > From: "Marco Sottana" <[EMAIL PROTECT

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
ashop isn't mine .. it isn't spam i only ask your opinion thanks! - Original Message - From: "Crayon" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 12:14 PM Subject: Re: [PHP] [opinions] Ashop Commerce Take your spam and shove it up your asshop. -- Crayon -- PHP General M

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
ssage - From: "Marco Sottana" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 11:39 AM Subject: [PHP] [opinions] Ashop Commerce Ashop Commerce is a leading provider of hosted shopping cart software. It offers a complete solution for merchants to sell online. Please wr

[PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
Ashop Commerce is a leading provider of hosted shopping cart software. It offers a complete solution for merchants to sell online. Please write your opinions of the service and if you can, use these keywords throughout your post in addition to the anchor text. Shopping cart software, shopping c

[PHP] Shell used by system()

2007-04-24 Thread Marco Michelino
Hi *, is it possible to change the shell used by system() , exec() and similar PHP funtions? I'm running mod_php in apache on Linux. Apache shell is set to /sbin/nologin but PHP insists to call /bin/sh... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

Re: [PHP] ibm universe database

2007-03-01 Thread Marco Sottana
as400? - Original Message - From: "Fernando Viadero" <[EMAIL PROTECTED]> To: Sent: Thursday, March 01, 2007 12:44 PM Subject: [PHP] ibm universe database Hello. i have to take some data from a IBM universe database on a windows server from my linux+php web server.. does anybody k

[PHP] $_SERVER["DOCUMENT_ROOT"] IIS6 windows2003

2007-02-27 Thread Marco Sottana
i have installed php in a IIS6 into a windows2003 i lost $_SERVER["DOCUMENT_ROOT"] why ??

[PHP] [PEAR] QUICKFORM JSCALENDAR with "multiple dates feature"

2006-10-25 Thread Marco Sottana
i find jscalendar element for HTML_QuickForm http://www.netsols.de/pear/jscalendar/ i need to use multiple dates feature http://www.dynarch.com/demos/jscalendar/multiple-dates.html anyone can help me? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] [PEAR] help pear quickform FormBuilder and checkboxes

2006-10-17 Thread Marco Sottana
> marco schrieb: >> [code] >> function preGenerateForm() >> { >> $this->fb_preDefElements['alive'] = >> HTML_QuickForm:: >> createElement('advcheckbox','alive','Ali >> ve',null,null,$this->alive); >&g

RE: [PHP] Problem with HUGE floating values and fmod

2006-02-18 Thread Marco Almeida
THANKS! That did the trick. For future reference to all people needing to calculate check digits with ISO 7604 (MOD 97-10) method: $check=98-bcmod(($num."00"),97); The ."00" part is imporant... If $num was multiplied by 100 we wouldn't get a correct value in bcmod.

[PHP] Problem with HUGE floating values and fmod

2006-02-17 Thread Marco Almeida
400,040,000" wich is strange... If possible, please reply to [EMAIL PROTECTED] Thanks in advance. Marco Almeida Project Manager WEBDADOS Tecnologias de Informação Telef.: +351 21 466 93 00 Fax: +351 21 466 42 81 Móvel: +351 96 324 43 44 Email: [EMAIL PROTE

Re: [PHP] Serious bug ?

2006-02-05 Thread Marco Kaiser
to the value of the parameter $msg, and assigning to one var will > overwrite values in unrelated variables. I repeat, this only happens if > you tried to access non-existent var or array member before that. > > So it's a bug. Do I get a PHP T-shirt ? :-) > > Boban. > > &

Re: [PHP] Get text from funky url?

2006-01-20 Thread Marco Kaiser
Hi, try to use urlencode() and urldecode() to encode url's. -- Marco 2006/1/20, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > Hello, > > I am trying to get xml from AIM's new presence API. > > The url is unusual, it has quotes in it. > > Anyone know

Re: [PHP] Case-Insensitive include on linux.

2006-01-11 Thread Marco Kaiser
same name in a directory. The example above is not possible. -- Marco 2006/1/11, Albert <[EMAIL PROTECTED]>: > > Mathijs wrote: > > Is there a way to have include() be case-insensitive? > Linux file systems are case sensitive. The include() and require() > function

Re: [PHP] interfaces - your opinion

2005-12-30 Thread Marco Kaiser
Hi Jochem, i know what you mean, but you can't define code in interfaces to implement a logic. You should use an abstract class to restrict the access. I think a interface should just define a rude prototype of function -- Marco Kaiser

Re: [PHP] Migration from MySQL to MS-SQL Server

2005-12-09 Thread Marco Kaiser
hi, you should also check your sql statements because they are maybe not compatible. Mysql have many mysql specific functions and behaviors. 2) I have not worked with MS-SQL Server before. Is there anything else which > I should keep in mind? > -- Marco Kaiser

Re: [PHP] href difference between OS's.

2005-12-09 Thread Marco Kaiser
Hi, just link directly to the specific file like Link Local the browser knows then how to handle this link. -- Marco

Re: [PHP] Re: Preventing Cross Site Scripting Vulnerbilities

2005-12-08 Thread Marco Kaiser
Hi, IMO, the best way to avoid XSS is to filter _output_. > > My script: > http://nengine.korsengineering.com/files/src/misc/HtmlFilter.phps > uhm, 1st. filter input 2nd escape output -- Marco Kaiser

Re: [PHP] configuring the CLI version of PHP

2005-12-06 Thread Marco Kaiser
Hi Jonathan, /usr/bin/php > /usr/include/php > /usr/lib/php > > How would I know which version in which? "which php" should tell where your phpcli binary are. php -v should tell you which php version you are running. -- Marco Kaiser

Re: [PHP] php problem

2005-12-02 Thread Marco Kaiser
(FF and FE in > hexadecilam) at the start of file. > -- Marco Kaiser -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] why php not running ?

2005-12-02 Thread Marco Kaiser
Hi Mehmet, can you provider a full backtrace of your core dumped php?` > [EMAIL PROTECTED] -> [~]#cat first.php > <%php > echo "Hello World!"; > %> > [EMAIL PROTECTED] -> [~]# > > Segmentation fault (core dumped) > [EMAIL PROTECTED] -> [~]# -

Re: [PHP] shortest possible check: field is set, integer or 0

2005-12-02 Thread Marco Kaiser
whats with if (isset($_POST['field']) && (INT)$_POST['field']>=0) { ? This should cover the requirements. $_POST['field'] should be eq 0 or higher as int. (INT) converts 1.44 to 1 (cuts .44) -- Marco 2005/12/2, Jochem Maas <[EMAIL PROTECTED]>:

Re: [PHP] Including classes

2005-11-22 Thread Marco Kaiser
ke to show any results. can you post a working example that can show me the problem? -- Marco Kaiser -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php related segmentation fault with Apache 2.0.55

2005-11-21 Thread Marco Kaiser
on of php. Disable alle Zend Stuff in you php.ini and tell me if this error still happen. -- Marco Kaiser -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php related segmentation fault with Apache 2.0.55

2005-11-21 Thread Marco Kaiser
Hi Kristina, I think there is no version available for 5.1.0-cvs. Try to remove the Zend Extensions and give me please feedback. > I just installed the latest available snap, and now I'm seeing a zend > error, but not a sapi error: -- Marco Kaiser -- PHP General Mailing List (http://

Re: [PHP] php related segmentation fault with Apache 2.0.55

2005-11-21 Thread Marco Kaiser
Hi Kristina, have you tried the lates cvs snap? I know there was some problems with apache2 and mod_rewrite maybe it is solve in CVS. -- Marco Kaiser -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend + Eclipse + Standized Framework

2005-11-13 Thread Marco Kaiser
Hi Dan, there are no details right now. Check frequently zend.com for updates about the framework and upcomming zend eclipse stuff. -- Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mod_rewrite and include paths

2005-11-13 Thread Marco Kaiser
Hi Marcus, try to use realpath, dirname and other related funktion to resolv the real path. dirname(__FILE__) ? -- Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-13 Thread Marco Kaiser
Hi, i mean http://www.phparch.com/cert/ :) -- Marco > Aren't they the same books? > > I mean, I see the same authors, the same titles and the same pictures. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: emailing MySQL list not working

2005-11-12 Thread Marco Kaiser
Hi Bruce, first, there are just \n in your last header assignment. I think you should test it a bit mir, Try to send mails without the optional header. If this not work ask here again. -- Marco > >>> $headers .= "Mime-Version:1.0\n Content-Type: text/plain; > >

  1   2   3   4   5   >