Re: [PHP] json_decode mistery

2013-05-25 Thread tamouse mailing lists
() after you attempt to decode $decrypted_data. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] .htaccess and user file/folder access outside public_html

2013-05-25 Thread Rafnews
anything really revelent...only theory and no really in details. I need your help. thx. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] .htaccess and user file/folder access outside public_html

2013-05-25 Thread Camilo Sperberg
to his own files ONLY ? i searched on internet for some help but i did not find anything really revelent...only theory and no really in details. I need your help. thx. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php You

Re: [PHP] json_decode mistery

2013-05-25 Thread Matijn Woudt
On Fri, May 24, 2013 at 9:06 AM, Radek Krejča radek.kre...@starnet.czwrote: Hello, I am usin json regulary, but in one script I have mistery: echo($decrypted_data).\n\n; var_dump(json_decode($decrypted_data, true)); echo \n;

[PHP] Can javascript or php help with this

2013-05-25 Thread dealTek
Hi all, I have a php form that has a pull down select for MONTH and one for YEAR - usually when the form is submitted you would combine them at the other end like 0517 (like credit card exp date) - but in this case I need to combine them prior to submitting the form... I don't know javascript

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

2013-05-25 Thread Jim Giner
On 5/25/2013 4:33 PM, dealTek wrote: Hi all, I have a php form that has a pull down select for MONTH and one for YEAR - usually when the form is submitted you would combine them at the other end like 0517 (like credit card exp date) - but in this case I need to combine them prior

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

2013-05-25 Thread Jim Giner
On 5/25/2013 4:33 PM, dealTek wrote: Hi all, I have a php form that has a pull down select for MONTH and one for YEAR - usually when the form is submitted you would combine them at the other end like 0517 (like credit card exp date) - but in this case I need to combine them prior

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]

php-general Digest 25 May 2013 02:02:56 -0000 Issue 8245

2013-05-24 Thread php-general-digest-help
php-general Digest 25 May 2013 02:02:56 - Issue 8245 Topics (messages 321197 through 321200): Re: Random 321197 by: Jim Giner Re: Simple objective which always seems to make me think I'm doing it wrong. 321198 by: Richard Quadling iterate javascript verification

Re: [PHP] Random

2013-05-24 Thread Last Hacker Always onpoint
PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: Hey I need code for random number 1-30 for my site. function rand_from_1_to_30() { return 4; } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] json_decode mistery

2013-05-24 Thread Radek Krejča
manualy use data displayed on screen, I got valid array. Where I do mistake? If I remove client_name (so no utf8 is in json data), situation is the same. Radek -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-24 Thread Ashley Sheridan
tamouse.li...@gmail.com wrote: On Thu, May 23, 2013 at 3:51 PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: Hey I need code for random number 1-30 for my site. function rand_from_1_to_30() { return 4; } Did you actually try that? Thanks, Ash -- PHP General Mailing List

[PHP] RE: json_decode mistery - solved

2013-05-24 Thread Radek Krejča
var_dump(json_decode(Trim($decrypted_data), true)); I dont know why, but there is any spaces, this is working. Radek -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-24 Thread Nick Pratley
. function rand_from_1_to_30() { return 4; } Did you actually try that? Thanks, Ash -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- - Nick

Re: [PHP] Random

2013-05-24 Thread Jim Giner
tamouse.li...@gmail.com wrote: On Thu, May 23, 2013 at 3:51 PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: Hey I need code for random number 1-30 for my site. function rand_from_1_to_30() { return 4; } Apparently, your laziness was overcome by all the abuse you took here. -- PHP

Re: [PHP] Simple objective which always seems to make me think I'm doing it wrong.

2013-05-24 Thread Richard Quadling
, but I'm just missing an obvious solution that isn't fat and doesn't require a massive learning for the other devs. Ideas? normalisedError.xml: ?php return END_XML the xml here END_XML; Then in your class your require_once line will work. However, use require instead

[PHP] iterate javascript verification

2013-05-24 Thread Tim Dunphy
Hello list, I have a php script that creates a variable number of forms based on a $_POST variable from a preceding page. It then takes the data input into the form and neatly packages the result into an email sent to an email address (eventually to be a ticketing system). Almost everything

Re: [PHP] iterate javascript verification

2013-05-24 Thread Ken Robinson
your PHP script, in case a user is using a browser that doesn't understand HTML5. At 08:07 PM 5/24/2013, Tim Dunphy wrote: Hello list, I have a php script that creates a variable number of forms based on a $_POST variable from a preceding page. It then takes the data input into the form

Re: [PHP] iterate javascript verification

2013-05-24 Thread musicdev
You can validate via JS if required, for example: (JS CODE): if(element.value.length == 0){ // handle 0 length value } I do agree with Ken that you SHOULD NOT perform JS validation. It is preferable to use php or the new HTML5 features. JS can be turned-off by the user which will make JS

Re: [PHP] iterate javascript verification

2013-05-24 Thread Ken Robinson
I took your code and modified it to use HTML5 validation (and few other changes). You can see the results at http://my-testbed.com/test1/form_validation.phphttp://my-testbed.com/test1/form_validation.php My code follows: ?php $fields = array('first_name','last_name','department','title

php-general Digest 23 May 2013 06:16:41 -0000 Issue 8242

2013-05-23 Thread php-general-digest-help
php-general Digest 23 May 2013 06:16:41 - Issue 8242 Topics (messages 321171 through 321171): Source code of original PHP release. 321171 by: chris Administrivia: To subscribe to the digest, e-mail: php-general-digest-subscr...@lists.php.net To unsubscribe from the digest

php-general Digest 23 May 2013 20:21:47 -0000 Issue 8243

2013-05-23 Thread php-general-digest-help
php-general Digest 23 May 2013 20:21:47 - Issue 8243 Topics (messages 321172 through 321178): Re: Source code of original PHP release. 321172 by: Serge Fonville 321177 by: Daniel Brown Simple objective which always seems to make me think I'm doing it wrong. 321173

[PHP] Source code of original PHP release.

2013-05-23 Thread chris
I'm currently writing a paper on the evolution of PHP and web development/security as a whole. One of the things I want to incorporate is snippets of source code to show how things have grown and advanced since the 90's If anyone could help me out I would be much appreciated. All my attempts

Re: [PHP] Source code of original PHP release.

2013-05-23 Thread Serge Fonville
Microsoft! They need to add TRUNCATE PARTITION in SQL Server https://connect.microsoft.com/SQLServer/feedback/details/417926/truncate-partition-of-partitioned-table 2013/5/23 chris ch...@cribznetwork.com I'm currently writing a paper on the evolution of PHP and web development/security as a whole. One

[PHP] Simple objective which always seems to make me think I'm doing it wrong.

2013-05-23 Thread Richard Quadling
Hi. I'm building an XML file. It is within an OOP structure and is pretty simple. The method is ... /** * Turn an error from the W2GlobalData service into normal document as this will make it easier to integrate downstream. * * @param \SimpleXMLElement $o_XML * @return

[PHP] [PHP-DEV] PHP 5.3.26RC1 and 5.4.16RC1 Released for Testing!

2013-05-23 Thread Johannes Schlüter
Hi! We've released PHP 5.3.26RC1 and 5.4.16RC1 which can be found here: 5.3.26RC1: http://downloads.php.net/johannes/php-5.3.26RC1.tar.bz2 http://downloads.php.net/johannes/php-5.3.26RC1.tar.gz 5.4.16RC1: http://downloads.php.net/stas/php-5.4.16RC1.tar.bz2 http

Re: [PHP] Simple objective which always seems to make me think I'm doing it wrong.

2013-05-23 Thread Matijn Woudt
On Thu, May 23, 2013 at 4:54 PM, Richard Quadling rquadl...@gmail.comwrote: Hi. I'm building an XML file. It is within an OOP structure and is pretty simple. The method is ... snip Nothing particularly difficult to understand, but I just don't like having the XML embedded this way.

Re: [PHP] Simple objective which always seems to make me think I'm doing it wrong.

2013-05-23 Thread Stuart Dallas
devs. Ideas? normalisedError.xml: ?php return END_XML the xml here END_XML; Then in your class your require_once line will work. However, use require instead of require_once otherwise if the function gets called twice it won't work the second time. -Stuart -- Stuart Dallas 3ft9 Ltd http

Re: [PHP] Source code of original PHP release.

2013-05-23 Thread Daniel Brown
On Thu, May 23, 2013 at 2:16 AM, chris ch...@cribznetwork.com wrote: I'm currently writing a paper on the evolution of PHP and web development/security as a whole. One of the things I want to incorporate is snippets of source code to show how things have grown and advanced since the 90's

[PHP] Script

2013-05-23 Thread Last Hacker Always onpoint
Hi please the script am using is an auto generated script: simple machine function, and its having problems. So please I'l like to ask if anyone can give me a cool music site script like music212.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Source code of original PHP release.

2013-05-23 Thread chris
Thank you Sir. Just what I needed :) I didn't even know there was a museum. Cheers, Christopher Tombleson On 2013-05-24 05:02, Daniel Brown wrote: On Thu, May 23, 2013 at 2:16 AM, chris ch...@cribznetwork.com wrote: I'm currently writing a paper on the evolution of PHP and web development

Re: [PHP] Random

2013-05-23 Thread Stuart Dallas
-- Stuart Dallas 3ft9 Ltd http://3ft9.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-23 Thread Daniel Brown
Infrastructure Manager http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-23 Thread Tedd Sperling
to be subscribed to be able to read this). :-) _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-23 Thread Stephen
On 13-05-23 04:51 PM, Last Hacker Always onpoint wrote: Hey I need code for random number 1-30 for my site. http://php.net/manual/en/function.rand.php -- Stephen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-23 Thread musicdev
His gmail name should be Last last last last Hacker hacker acker not-cker Never On-point :) On Thu, May 23, 2013 at 4:51 PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: Hey I need code for random number 1-30 for my site. -- PHP General Mailing List (http://www.php.net

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

2013-05-23 Thread dealTek
On May 18, 2013, at 11:33 AM, Matijn Woudt tijn...@gmail.com wrote: Probably some people will say PDO, others will say MySQLi, in general it doesn't really matter, and I think you have named the biggest differences in your mail. So if you're going to stick with MySQL anyway, you can take

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

2013-05-23 Thread musicdev
PHP mysql functions to something newer, either mysqli or PDO. I have read various things about them, but I'm curious at this point which would be best to learn for the present and future. I'm usually working on small to medium size projects. I understand that PDO has an extra abstraction

Re: [PHP] Random

2013-05-23 Thread tamouse mailing lists
On Thu, May 23, 2013 at 3:51 PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: Hey I need code for random number 1-30 for my site. function rand_from_1_to_30() { return 4; } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random

2013-05-23 Thread Last Hacker Always onpoint
. function rand_from_1_to_30() { return 4; } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-general Digest 22 May 2013 10:14:15 -0000 Issue 8241

2013-05-22 Thread php-general-digest-help
php-general Digest 22 May 2013 10:14:15 - Issue 8241 Topics (messages 321169 through 321170): Re: Doing something wrong? 321169 by: David Robley 321170 by: Lester Caine Administrivia: To subscribe to the digest, e-mail: php-general-digest-subscr...@lists.php.net

Re: [PHP] Re: Doing something wrong?

2013-05-22 Thread Lester Caine
David Robley wrote: Did you make clean after reconfiguring before re-compiling php? According tohttps://bugs.php.net/bug.php?id=63611 that may be a cause. That was the kick - Thanks ... -- Lester Caine - G8HFL - Contact - http://lsces.co.uk/wiki/?page=contact

php-general Digest 21 May 2013 19:08:50 -0000 Issue 8240

2013-05-21 Thread php-general-digest-help
php-general Digest 21 May 2013 19:08:50 - Issue 8240 Topics (messages 321162 through 321168): Re: Question about session_id() and session_start() 321162 by: Tim Schofield 321165 by: 孟远涛 totally a newbie in sending phone number to a webserver 321163 by: Negin

Re: [PHP] Question about session_id() and session_start()

2013-05-21 Thread Tim Schofield
On 20/05/2013, Maciek Sokolewicz maciek.sokolew...@gmail.com wrote: On 20-5-2013 22:14, Tim Schofield wrote: Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half a million lines of C when you could just tell

[PHP] totally a newbie in sending phone number to a webserver

2013-05-21 Thread Negin Nickparsa
service like $phone['number'],$user,$pass,$url I don't know what exactly I should do to force the php code read from the functions of the web service does including the url enough? I am totally mixed up. can someone tell me what is happening in this procedure? is there any tutorial so that I can

Re: [PHP] totally a newbie in sending phone number to a webserver

2013-05-21 Thread Farzan Dalaee
know what exactly I should do to force the php code read from the functions of the web service does including the url enough? I am totally mixed up. can someone tell me what is happening in this procedure? is there any tutorial so that I can understand it? I tried to use sample codes

Re: [PHP] Question about session_id() and session_start()

2013-05-21 Thread 孟远涛
to the client. On Tue, May 21, 2013 at 3:50 PM, Tim Schofield t...@weberpafrica.com wrote: On 20/05/2013, Maciek Sokolewicz maciek.sokolew...@gmail.com wrote: On 20-5-2013 22:14, Tim Schofield wrote: Matijn There are well over half a million lines of source code in PHP. It seems

Re: [PHP] A Good OOP Tutorial/Read?

2013-05-21 Thread Dan Joseph
difficult to explain, but his excellent console made the concept clear. Many thanks to all for their efforts to educate me. Cheers, tedd _ t...@sperling.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] How do I remove a string from another string in a fuzzy way?

2013-05-21 Thread Tedd Sperling
in the whitespace and removing the delimiter. Also, you may want to look into using array_unique() for comparing groupings of several strings (i.e., paragraphs) to other groupings. It works pretty slick for me. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP

[PHP] Doing something wrong?

2013-05-21 Thread Lester Caine
- Contact - http://lsces.co.uk/wiki/?page=contact L.S.Caine Electronic Services - http://lsces.co.uk EnquirySolve - http://enquirysolve.com/ Model Engineers Digital Workshop - http://medw.co.uk Rainbow Digital Media - http://rainbowdigitalmedia.co.uk -- PHP General Mailing

[PHP] Re: Doing something wrong?

2013-05-21 Thread David Robley
you make clean after reconfiguring before re-compiling php? According to https://bugs.php.net/bug.php?id=63611 that may be a cause. -- Cheers David Robley An ulcer is what you get mountain climbing over molehills. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

php-general Digest 20 May 2013 16:40:33 -0000 Issue 8238

2013-05-20 Thread php-general-digest-help
php-general Digest 20 May 2013 16:40:33 - Issue 8238 Topics (messages 321140 through 321147): pass parameter via URL 321140 by: iccsi 321141 by: shiplu 321142 by: Jim Giner 321143 by: iccsi 321144 by: iccsi 321145 by: shiplu 321146

[PHP] pass parameter via URL

2013-05-20 Thread iccsi
I would like to know how can I pass a parameter via URL using control value on the form. something like myPage.php?MyID=txtMyID.value I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value. Your help and information is great appreciated, Regards, Iccsi -- PHP General

Re: [PHP] pass parameter via URL

2013-05-20 Thread shiplu
On Mon, May 20, 2013 at 7:17 PM, iccsi inu...@gmail.com wrote: I would like to know how can I pass a parameter via URL using control value on the form. something like myPage.php?MyID=txtMyID.value I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value. Your help and

[PHP] Re: pass parameter via URL

2013-05-20 Thread Jim Giner
, Regards, Iccsi Yes - this is a JS question. But - the answer is: var url=myPage.php?MyID=+txtMyId.value; Now the variable 'url' contains your url -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pass parameter via URL

2013-05-20 Thread iccsi
And here is function I wrote that does it using pure javascript. http://shiplu.mokadd.im/61/parse-query-string-by-pure-javascrirpt/ -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader -- PHP General Mailing List (http

[PHP] Re: pass parameter via URL

2013-05-20 Thread iccsi
and information is great appreciated, Regards, Iccsi Yes - this is a JS question. But - the answer is: var url=myPage.php?MyID=+txtMyId.value; Now the variable 'url' contains your url -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pass parameter via URL

2013-05-20 Thread shiplu
On Mon, May 20, 2013 at 7:49 PM, iccsi inu...@gmail.com wrote: Thanks for the message and helping, Your js looks like to parse URL. Please let me know if I am wrong, Do you have any code to generate the URL parameter using control value? Thanks again for helping, Iccsi, shiplu wrote

[PHP] Re: pass parameter via URL

2013-05-20 Thread Jim Giner
. Although - I don't know what you mean by 'sending page'. This all has to be done in the same page. Or if you want the 'value' to be sent to the 'myPage.php' script, you could just make 'txtMyID' a hidden input field and use a POST action instead of a GET. -- PHP General Mailing List (http

[PHP] Symfony?

2013-05-20 Thread Tedd Sperling
Hi gang: Who uses Symfony? Cheers, tedd _ t...@sperling.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Symfony?

2013-05-20 Thread Jose Nobile
_ t...@sperling.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Symfony?

2013-05-20 Thread Bastien
. The learning curve is steep. What's the question? Bastien -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Symfony?

2013-05-20 Thread Ken Robinson
preferred framework. It's very powerful, but very complex and has a ton of yaml config files for the app. The learning curve is steep. What's the question? Bastien -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread Matijn Woudt
On Mon, May 20, 2013 at 5:33 AM, 孟远涛 yuantao.m...@gmail.com wrote: I find the Note in PHP document. http://www.php.net/manual/en/function.session-id.php Note: When using session cookies, specifying an id for session_id() will always send a new cookie when session_start() is called

Re: [PHP] pass parameter via URL

2013-05-20 Thread Matijn Woudt
On Mon, May 20, 2013 at 3:17 PM, iccsi inu...@gmail.com wrote: I would like to know how can I pass a parameter via URL using control value on the form. something like myPage.php?MyID=txtMyID.value I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value. Your help and

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread Tim Schofield
Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half a million lines of C when you could just tell them the answer? Thanks Tim Course View Towers, Plot 21 Yusuf Lule Road, Kampala T +256 (0) 312 314 418 M +256 (0

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread David OBrien
On Mon, May 20, 2013 at 4:14 PM, Tim Schofield t...@weberpafrica.com wrote: Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half a million lines of C when you could just tell them the answer? Thanks Tim

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread Maciek Sokolewicz
On 20-5-2013 22:14, Tim Schofield wrote: Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half a million lines of C when you could just tell them the answer? Thanks Tim Course View Towers, Plot 21 Yusuf Lule Road

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread Matijn Woudt
On Mon, May 20, 2013 at 10:46 PM, David OBrien dgobr...@gmail.com wrote: On Mon, May 20, 2013 at 4:14 PM, Tim Schofield t...@weberpafrica.com wrote: Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread David OBrien
On May 20, 2013 8:45 PM, Matijn Woudt tijn...@gmail.com wrote: On Mon, May 20, 2013 at 10:46 PM, David OBrien dgobr...@gmail.com wrote: On Mon, May 20, 2013 at 4:14 PM, Tim Schofield t...@weberpafrica.com wrote: Matijn There are well over half a million lines of source code in PHP

[PHP] How do I remove a string from another string in a fuzzy way?

2013-05-20 Thread Daevid Vincent
cancel your membership on our billing agent website (just in case THIS PHP list software mangles the above, it is just one long string with no CR breaks as the ones below have) ENTRY 2: (which was mangled by the customer's email client most likely and formatted for 72 chars) For security

Re: [PHP] Question about session_id() and session_start()

2013-05-20 Thread Matijn Woudt
: Matijn There are well over half a million lines of source code in PHP. It seems a little unhelpful to tell someone to go and read half a million lines of C when you could just tell them the answer? Thanks Tim Course View Towers, Plot 21 Yusuf Lule Road

Re: [PHP] How do I remove a string from another string in a fuzzy way?

2013-05-20 Thread shiplu
Is your ticketing system written from scratch? Because such type of logic is already implemented in existing help desk softwares. I think you can also use a specific string in your email to define which part goes in ticket and which part not. For example, you can include PLEASE REPLY ABOVE THIS

RE: [PHP] How do I remove a string from another string in a fuzzy way?

2013-05-20 Thread Daevid Vincent
-Original Message- From: muquad...@gmail.com [mailto:muquad...@gmail.com] On Behalf Of shiplu Sent: Monday, May 20, 2013 9:03 PM To: Daevid Vincent Cc: php-general General List Subject: Re: [PHP] How do I remove a string from another string in a fuzzy way? Is your ticketing

Re: [PHP] ODBC

2013-05-19 Thread georg
Hi Negin, tnx for advice, now however I have successfully downloaded and installed ODBC and the things needed to connect PHP-ODBC (yum on the same actually) however, the llinked library file that the odbcinit.ini file points to in order to link the libmimodbc.so library is not found, though

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
/feedback/details/417926/truncate-partition-of-partitioned-table 2013/5/19 georg georg.chamb...@telia.com Hi Negin, tnx for advice, now however I have successfully downloaded and installed ODBC and the things needed to connect PHP-ODBC (yum on the same actually) however, the llinked library file

Re: [PHP] ODBC

2013-05-19 Thread georg
Hi Serge, compliled some more info Apache error log as: --- [Tue May 14 17:45:11 2013] [error] [client 127.0.0.1] PHP Warning: odbc_connect(): SQL error: [unixODBC][Driver Manager]Can't open lib '/lib/libmimodbc.so' : file not found, SQL state 01000 in SQLConnect in /var/www/html/my2.php

Re: [PHP] ODBC

2013-05-19 Thread georg
Staring at it myself; should there be xr in the last position of the access definitions ? (how does Apache process come into the system access wise ?) tnx georg - Original Message - From: georg georg.chamb...@telia.com To: Serge Fonville serge.fonvi...@gmail.com Cc: php-general

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
/SQLServer/feedback/details/417926/truncate-partition-of-partitioned-table 2013/5/19 georg georg.chamb...@telia.com Hi Serge, compliled some more info Apache error log as: --- [Tue May 14 17:45:11 2013] [error] [client 127.0.0.1] PHP Warning: odbc_connect(): SQL error: [unixODBC][Driver Manager

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
georg.chamb...@telia.com To: Serge Fonville serge.fonvi...@gmail.com Cc: php-general@lists.php.net Sent: Sunday, May 19, 2013 1:29 PM Subject: Re: [PHP] ODBC Hi Serge, compliled some more info Apache error log as: --- [Tue May 14 17:45:11 2013] [error] [client 127.0.0.1] PHP Warning

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
Also, is PHP installed as a module or otherwise? Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft! They need to add TRUNCATE PARTITION in SQL Server https://connect.microsoft.com/SQLServer/feedback/details/417926/truncate-partition

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
://connect.microsoft.com/SQLServer/feedback/details/417926/truncate-partition-of-partitioned-table 2013/5/19 Serge Fonville serge.fonvi...@gmail.com Also, is PHP installed as a module or otherwise? Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
...@telia.com As I said, Im a bit new to Linux, and the user and access system seem to me a bit . I dont reallly know what user apache runs as, possibly this process status give something ? (seem to be 8 processes, but what the user be apache ? i have accessed php directly, when su root; #php -r

Re: [PHP] A Good OOP Tutorial/Read?

2013-05-19 Thread Tedd Sperling
that do not support double inheritance, an Interface is offered as a solution -- and therein is my question. So, in that regard how does an Interface provide methods to classes that implement the Interface? Just show me a *simple* example (either php or Java will do). Cheers, tedd PS

Re: [PHP] ODBC

2013-05-19 Thread georg
) -- I did this supplying lib_t think, think, think a long time, silent return, so the action should be happy, NO DIFFERNCE, same error log Isnt security wondefful. It really sees to that noone can achive nothing. /georg - Original Message - From: Serge Fonville To: georg ; PHP

Re: [PHP] ODBC

2013-05-19 Thread georg
Actually who the heck has put SELinux in my machine ? anyone knows (is this a part of fedora ?) /g

Re: [PHP] ODBC

2013-05-19 Thread Larry Martell
with this: echo 0 /selinux/enforce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ODBC

2013-05-19 Thread Ashley Sheridan
On Sun, 2013-05-19 at 17:06 +0200, georg wrote: Actually who the heck has put SELinux in my machine ? anyone knows (is this a part of fedora ?) /g SELinux is part of Fedora install. You can disable it (not recommended) or just follow one of the options it gives you depending on what you

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
better would be to allow apache acces to the module i.e. http://www.webhostingtalk.com/showthread.php?t=711418 Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft! They need to add TRUNCATE PARTITION in SQL Server

Re: [PHP] ODBC

2013-05-19 Thread Serge Fonville
Again to the list Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft! They need to add TRUNCATE PARTITION in SQL Server https://connect.microsoft.com/SQLServer/feedback/details/417926/truncate-partition-of-partitioned-table 2013/5/19 Serge

Re: [PHP] ODBC

2013-05-19 Thread georg
possibly I one day will learn how to use it in a proper way to actually secure my server and then I might even be happy about it. realizing this has not been PHP at all, and thanks for all advice for now /georg - Original Message - From: Serge Fonville serge.fonvi...@gmail.com

Re: [PHP] A Good OOP Tutorial/Read?

2013-05-19 Thread Tedd Sperling
To all: Thanks to Stuart, I finally got it. The concept of Interface is a bit difficult to explain, but his excellent console made the concept clear. Many thanks to all for their efforts to educate me. Cheers, tedd _ t...@sperling.com http://sperling.com -- PHP

[PHP] Question about session_id() and session_start()

2013-05-19 Thread 孟远涛
I find the Note in PHP document. http://www.php.net/manual/en/function.session-id.php Note: When using session cookies, specifying an id for session_id() will always send a new cookie when session_start() is called, regardless if the current session id is identical to the one being set. I feel

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

2013-05-18 Thread Ali Reza Sajedi
tcpdf is a good choice ali - Original Message - From: dealTek deal...@gmail.com To: PHP General list php-general@lists.php.net Sent: Saturday, May 18, 2013 3:05 AM Subject: [PHP] looking for a PDF generator class/library for PHP 5? Hi all, I'm looking into a good versatile PDF

Re: [PHP] ODBC

2013-05-18 Thread Negin Nickparsa
be in the distribution of fedora ?) br georg - Original Message - From: David OBrien dgobr...@gmail.com To: georg georg.chamb...@telia.com Cc: PHP General php-general@lists.php.net Sent: Monday, May 06, 2013 11:06 PM Subject: Re: [PHP] ODBC On Mon, May 6, 2013 at 3:32 PM, georg

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

2013-05-18 Thread dealTek
Hi folks, [post newbie abilities] - I'm attempting to move away from PHP mysql functions to something newer, either mysqli or PDO. I have read various things about them, but I'm curious at this point which would be best to learn for the present and future. I'm usually working on small

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-18 Thread Matijn Woudt
On Sat, May 18, 2013 at 8:09 PM, dealTek deal...@gmail.com wrote: Hi folks, [post newbie abilities] - I'm attempting to move away from PHP mysql functions to something newer, either mysqli or PDO. I have read various things about them, but I'm curious at this point which would be best

php-general Digest 17 May 2013 13:04:16 -0000 Issue 8233

2013-05-17 Thread php-general-digest-help
php-general Digest 17 May 2013 13:04:16 - Issue 8233 Topics (messages 321093 through 321101): Re: A Good OOP Tutorial/Read? 321093 by: Nick Khamis 321094 by: Sebastian Krebs 321095 by: Bastien 321096 by: Tedd Sperling 321097 by: Nick Khamis

Re: [PHP] A Good OOP Tutorial/Read?

2013-05-17 Thread Tedd Sperling
. After all, an interface requires the same thing, does it not? As such, I just don't see the advantage interfaces bring. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

<    8   9   10   11   12   13   14   15   16   17   >