Re: [PHP] How to extract php source code from joomla

2013-07-23 Thread richard gray
On 23/07/2013 16:54, Yoinier Hernandez Nieves wrote: El 22/07/13 15:49, elk dolk escribió: Thank you for the quick response ! What I am trying to do : I have to complete two university projects for my professor ! project One : Make an online shop and must use the following components in i

Re: [PHP] How to extract php source code from joomla

2013-07-23 Thread Yoinier Hernandez Nieves
El 22/07/13 15:49, elk dolk escribió: Thank you for the quick response ! What I am trying to do : I have to complete two university projects for my professor ! project One : Make an online shop and must use the following components in it Shopping cart, Catalog of products, payment gateway

[PHP] Re: How to extract php source code from joomla

2013-07-23 Thread Tedd Sperling
On Jul 23, 2013, at 12:15 AM, elk dolk wrote: > I study for MSc degree at university. > > Are you in an advanced class? Ok, congratulations -- you are studying for an MSc -- but that didn't answer the question. So, let me repeat the question: [1] "Are you in an advanced PHP class?" [2] "Or

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I study for MSc degree at university.  Are you in an advanced class?

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Tedd Sperling
On Jul 22, 2013, at 3:49 PM, elk dolk wrote: > Thank you for the quick response ! What I am trying to do : I have to > complete two university projects for > > my professor ! > > project One : Make an online shop and must use the following components in > it > > > Shopping cart, Catalog o

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
On Mon, 2013-07-22 at 13:10 -0700, elk dolk wrote: > I am allowed to use tools or code by hand , it does not matter ,the professor > wants to have the source code. > > > > You say tools, but would he consider a full-blown complex CMS as merely a tool, or not?

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I am allowed to use tools or code by hand , it does not matter ,the professor wants to have the source code.

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
; those projects ! I thought it's > > better to use Joomla I'll be grateful if you can give me an advice > > > thank you > > > - Forwarded Message - > From: Ashley Sheridan > To: elk dolk > Cc: "php-general@lists.php.net&quo

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
ed Message - From: Ashley Sheridan To: elk dolk Cc: "php-general@lists.php.net" Sent: Monday, July 22, 2013 11:45 PM Subject: Re: [PHP] How to extract php source code from joomla On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: > Hi all, > I want to build a website us

Re: [PHP] How to extract php source code from joomla

2013-07-22 Thread Ashley Sheridan
On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: > Hi all, > I want to build a website using Joomla 2.5 . It should have 5 pages: > > index.php > pageOne.php > pageTwo.php > ... > > How can I get the php source code for those pages? > > I installed joo

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
Hi all, I want to build a website using Joomla 2.5 . It should have 5 pages: index.php pageOne.php pageTwo.php ... How can I get the php source code for those pages? I installed joomla 2.5 on my windows box and use XAMPP's appache web server  thanks

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 wrote: I'm currently writing a paper on the evolution of PHP and web development/security as a whole. One o

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

2013-05-23 Thread Daniel Brown
On Thu, May 23, 2013 at 2:16 AM, chris 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 > > If anyone could help

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

2013-05-22 Thread Serge Fonville
Hi, Have you looked at http://php.net/manual/en/history.php.php? Could you also share some information on what you have already, as to prevent we would provide information you already have? HTH Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft

[PHP] Source code of original PHP release.

2013-05-22 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 o

Re: [PHP] Source Code Analysis

2009-06-07 Thread Dee Ayy
On Wed, Oct 22, 2008 at 4:30 PM, Dee Ayy wrote: > Thanks regarding the error_reporting.  I may have to go this route for > this specific issue. > ... > ...  And not only for this specific issue. I have another need for a SCA tool. Is there an existing tool similar to a broken link checker, but ins

Re: [PHP] Source Code Analysis

2008-10-22 Thread Dee Ayy
Thanks regarding the error_reporting. I may have to go this route for this specific issue. I was hoping a source code analyzer would report the same type problem, perhaps much faster than Robert's method, and without having a human attempt to test all functionality of the various PHP apps on old

Re: [PHP] Source Code Analysis

2008-10-22 Thread Ashley Sheridan
On Wed, 2008-10-22 at 11:16 -0700, Jim Lucas wrote: > Dee Ayy wrote: > > Is there a tool that can analyze PHP source code and detect if the > > code is relying on register_globals still being on? Perhaps detecting > > if a variable has not been initialized within the code?

Re: [PHP] Source Code Analysis

2008-10-22 Thread Greg Bowser
>Perhaps detecting >if a variable has not been initialized within the code This is an E_NOTICE level error. [EMAIL PROTECTED] ~ $ php test.php Notice: Undefined variable: foo in /home/mario/test.php on line 3

Re: [PHP] Source Code Analysis

2008-10-22 Thread Jim Lucas
Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific needs, but I'm also interested in

Re: [PHP] Source Code Analysis

2008-10-22 Thread Nathan Rixham
Robert Cummings wrote: On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: Is there a tool that can analyze PHP source code and detect if the code is relying on register_globals still being on? Perhaps detecting if a variable has not been initialized within the code? These are my specific needs

Re: [PHP] Source Code Analysis

2008-10-22 Thread Robert Cummings
On Wed, 2008-10-22 at 12:24 -0500, Dee Ayy wrote: > Is there a tool that can analyze PHP source code and detect if the > code is relying on register_globals still being on? Perhaps detecting > if a variable has not been initialized within the code? > > These are my specific need

[PHP] Source Code Analysis

2008-10-22 Thread Dee Ayy
Is there a tool that can analyze PHP source code and detect if the code is relying on register_globals still being on? Perhaps detecting if a variable has not been initialized within the code? These are my specific needs, but I'm also interested in general SCA tools and features. --

RE: [PHP] PHP Source code protection

2008-02-14 Thread Richard Lynch
On Thu, February 7, 2008 8:35 pm, Andrés Robinet wrote: > 1 - I believe the fact that we don't "encode" (read "compile") our > scripts is > tightly related to the fact that we don't have a bytecode interpreter > (say JIT > compiler or something?) bundled into PHP. Er. PHP has a bytecode inter

Re: [PHP] PHP Source code protection

2008-02-11 Thread Greg Donald
On 2/7/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > Because who's to say you're selling to one client? If it's your > Intellectual Property, wouldn't you want to protect it, at least as > much as possible? No, I think protecting software in any way is a waste if resources, especially softwar

Re: [PHP] PHP Source code protection

2008-02-08 Thread Richard Heyes
> accept the fact that it may get pirated. It may do. But there's nothing wrong with making it as hard as possible to do so. Most people have better things to do than try to reverse engineer a piece of code. Consider: 1. People who buy code will generally do so to solve a problem that they

Re: [PHP] PHP Source code protection

2008-02-08 Thread Per Jessen
Casey wrote: > > Why not just translate it to C#? Personally I'd just go for C - that way I can just distribute a binary and be done with it. No runtime, no JVM, no mono etc. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

Re: [PHP] PHP Source code protection

2008-02-08 Thread Per Jessen
Greg Donald wrote: > Deductive reasoning leads to two possible options: > > 1) Don't give the code to anyone. > 2) Give the code to the client and accept the fact that it may get > pirated. Yep, that's all there is to it. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] PHP Source code protection

2008-02-07 Thread Andrés Robinet
> -Original Message- > From: Daniel Brown [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 07, 2008 7:10 PM > To: Greg Donald > Cc: php-general@lists.php.net > Subject: Re: [PHP] PHP Source code protection > > On Feb 7, 2008 6:20 PM, Greg Donald <[EMAIL PR

Re: [PHP] PHP Source code protection

2008-02-07 Thread Daniel Brown
On Feb 7, 2008 6:20 PM, Greg Donald <[EMAIL PROTECTED]> wrote: > On 2/7/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > > Actually, Greg, I respectfully disagree. First, just because > > there may be ways to reverse-engineer things doesn't mean it's a bad > > idea to attempt to protect your code

Re: [PHP] PHP Source code protection

2008-02-07 Thread Greg Donald
On 2/7/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > Actually, Greg, I respectfully disagree. First, just because > there may be ways to reverse-engineer things doesn't mean it's a bad > idea to attempt to protect your code against such. Why would you encode to start with? The only reason I

Re: [PHP] PHP Source code protection

2008-02-07 Thread Daniel Brown
On Feb 7, 2008 4:56 PM, Greg Donald <[EMAIL PROTECTED]> wrote: > On 2/7/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > > > http://www.phprecovery.com/ > > > > Pointless? I think it is exactly the answer to the original persons > > question. > > Yup, it's the exact correct answer, to a pointless que

Re: [PHP] PHP Source code protection

2008-02-07 Thread Greg Donald
On 2/7/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > > http://www.phprecovery.com/ > > Pointless? I think it is exactly the answer to the original persons > question. Yup, it's the exact correct answer, to a pointless question. Even Zend knows it's pointless to encode PHP. When you type "decode

Re: [PHP] PHP Source code protection

2008-02-07 Thread Casey
On Feb 7, 2008 1:50 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: > Greg Donald wrote: > > On 2/6/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > >> There's the Zend Encoder at www.zend.com. Though it may be called > >> something else now. > > > > Pointless. > > > > http://www.phprecovery.com/ > > Po

Re: [PHP] PHP Source code protection

2008-02-07 Thread Richard Heyes
Greg Donald wrote: On 2/6/08, Richard Heyes <[EMAIL PROTECTED]> wrote: There's the Zend Encoder at www.zend.com. Though it may be called something else now. Pointless. http://www.phprecovery.com/ Pointless? I think it is exactly the answer to the original persons question. -- Richard Hey

Re: [PHP] PHP Source code protection

2008-02-07 Thread Per Jessen
Richard Lynch wrote: > After you get your PHP code all worked out, re-write it as a custom > PHP extension -- or even just the core of it, and send them a .so or > .dll to install. Interesting option. Does require more effort, but if you rewrite the whole thing in C, you might gain some performa

Re: [PHP] PHP Source code protection

2008-02-07 Thread Per Jessen
John Taylor-Johnston wrote: > I'm not sure where PHP stands on this politically. But I believe in > Open Source, which allows you to encode your code. But why? At heart > I'm a purist GNU. Stallman was right when he first tried to fix a > faulty printer. I too believe in Open Source, but there ar

Re: [PHP] PHP Source code protection

2008-02-06 Thread John Taylor-Johnston
a nest of hornets. :p C.R.Vegelin wrote: See also: http://www.ioncube.com/ - Original Message - From: "Bastien Koert" <[EMAIL PROTECTED]> To: "Zoran Bogdanov" <[EMAIL PROTECTED]>; Sent: Wednesday, February 06, 2008 2:27 PM Subject: RE: [PHP] PHP So

[PHP] Roadsend (was Re: PHP Source code protection)

2008-02-06 Thread Bruce Cowin
>>> zerof <[EMAIL PROTECTED]> 7/02/2008 12:04 p.m. >>> Try Roadsend, now as Open Source: http://www.roadsend.com/home/index.php?SMC=1&pageID=compiler Hey, that looks cool. Do many people use this? Has anyone built any standalone GUI apps with it? Regards, Bruce -- PHP General Mailing

[PHP] Re: PHP Source code protection

2008-02-06 Thread zerof
Zoran Bogdanov escreveu: Hi, I'm building a C# application that connects to a server that has PHP scripts on it. We need to deliver the complete solution to a firm, the C# is no problem because it is compiled... But PHP is a problem bacause it is interpreted and we will have to deliver pu

Re: [PHP] PHP Source code protection

2008-02-06 Thread Richard Lynch
On Wed, February 6, 2008 5:28 am, Zoran Bogdanov wrote: > I'm building a C# application that connects to a server that has PHP > scripts > on it. > > We need to deliver the complete solution to a firm, the C# is no > problem > because it is compiled... > > But PHP is a problem bacause it is interpr

Re: [PHP] PHP Source code protection

2008-02-06 Thread Greg Donald
On 2/6/08, Greg Donald <[EMAIL PROTECTED]> wrote: > On 2/6/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > > There's the Zend Encoder at www.zend.com. Though it may be called > > something else now. > > Pointless. > > http://www.phprecovery.com/ http://www.zendecode.com/ I'm sure there are others.

Re: [PHP] PHP Source code protection

2008-02-06 Thread Greg Donald
On 2/6/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > There's the Zend Encoder at www.zend.com. Though it may be called > something else now. Pointless. http://www.phprecovery.com/ -- Greg Donald http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] PHP Source code protection

2008-02-06 Thread Daniel Brown
On Feb 6, 2008 11:13 AM, C.R.Vegelin <[EMAIL PROTECTED]> wrote: > - Original Message - > From: "Bastien Koert" <[EMAIL PROTECTED]> > > zend encoder? > > http://sourceforge.net/projects/php-screw/ > > > > > > google for more > > > See also: > http://www.ioncube.com/ All good ideas. An

Re: [PHP] PHP Source code protection

2008-02-06 Thread Floor Terra
> Is htere a way to secoure my code so when they put it on the server, they > can't see it! Short answer: NO Long answer NO, but: There are some products that claim they protect your code, but they all basicly rely on "security through obscurity". A principle that is often frowned upon by security

Re: [PHP] PHP Source code protection

2008-02-06 Thread C.R.Vegelin
See also: http://www.ioncube.com/ - Original Message - From: "Bastien Koert" <[EMAIL PROTECTED]> To: "Zoran Bogdanov" <[EMAIL PROTECTED]>; Sent: Wednesday, February 06, 2008 2:27 PM Subject: RE: [PHP] PHP Source code protection zend encoder? htt

RE: [PHP] PHP Source code protection

2008-02-06 Thread Bastien Koert
zend encoder? http://sourceforge.net/projects/php-screw/ google for more bastien> To: php-general@lists.php.net> From: [EMAIL PROTECTED]> Date: Wed, 6 Feb 2008 12:28:12 +0100> Subject: [PHP] PHP Source code protection> > Hi,> > I'm building a C# applicat

Re: [PHP] PHP Source code protection

2008-02-06 Thread Richard Heyes
I'm building a C# application that connects to a server that has PHP scripts on it. We need to deliver the complete solution to a firm, the C# is no problem because it is compiled... But PHP is a problem bacause it is interpreted and we will have to deliver pure, unprotected script... Is h

[PHP] PHP Source code protection

2008-02-06 Thread Zoran Bogdanov
Hi, I'm building a C# application that connects to a server that has PHP scripts on it. We need to deliver the complete solution to a firm, the C# is no problem because it is compiled... But PHP is a problem bacause it is interpreted and we will have to deliver pure, unprotected script... Is

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread Daniel Brown
On 10/12/07, David Giragosian <[EMAIL PROTECTED]> wrote: > On 10/12/07, tedd <[EMAIL PROTECTED]> wrote: > > At 9:57 AM -0400 10/11/07, Daniel Brown wrote: > > > > > > > > > By the way, Tedd you alright there? Ya' kinda' got squashed. > > > > > >-- > > >Daniel P. Brown > > > > I'm find, but

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread David Giragosian
On 10/12/07, tedd <[EMAIL PROTECTED]> wrote: > > At 9:57 AM -0400 10/11/07, Daniel Brown wrote: > > > > > > By the way, Tedd you alright there? Ya' kinda' got squashed. > > > >-- > >Daniel P. Brown > > I'm find, but I lost my thought -- it's happening more these days. :-) > > Cheers, > > t

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread tedd
At 9:57 AM -0400 10/11/07, Daniel Brown wrote: By the way, Tedd you alright there? Ya' kinda' got squashed. -- Daniel P. Brown I'm find, but I lost my thought -- it's happening more these days. :-) Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earth

Re: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Daniel Brown
On 10/11/07, Javed Khan <[EMAIL PROTECTED]> wrote: > > Hello Everyone, > I have the source code of a php application I got from someone but it is > encoded with IonCude. > I would really appreciate if someone can send me any solution for that. > > Thank you, > Javed > > > > From: [EMAIL PROTECTED]

Re: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Robert Cummings
On Thu, 2007-10-11 at 12:06 +, Javed Khan wrote: > Hello Everyone, > I have the source code of a php application I got from someone but it is > encoded with IonCude. > I would really appreciate if someone can send me any solution for that. There's a reason it's encoded with IonCube. Someone d

RE: [PHP] How to decode the PHP Source Code

2007-10-11 Thread Jay Blanchard
[snip] I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. [/snip] Please do not hijack threads. If you have a new subject create a new e-mail with said subject. This helps to maintai

[PHP] How to decode the PHP Source Code

2007-10-11 Thread Javed Khan
Hello Everyone, I have the source code of a php application I got from someone but it is encoded with IonCude. I would really appreciate if someone can send me any solution for that. Thank you, Javed > From: [EMAIL PROTECTED] > Date: Thu, 11 Oct 2007 08:40:22 +0200 > To: php-general@lists.php.

Re: [PHP] PHP source code formatter for OS X

2005-03-21 Thread Richard Lynch
On Wed, March 16, 2005 8:11 pm, DuSTiN KRySaK said: > Does anyone know of a PHP source code formatter to clean up sloppy code > that runs on OS X? http://php.net/highlight_string may or may not do some cleanup. Probably not enough. I think there's a PHP pretty-printer at http://php

Re: [PHP] PHP source code formatter for OS X

2005-03-17 Thread Jochem Maas
DuSTiN KRySaK wrote: Does anyone know of a PHP source code formatter to clean up sloppy code that runs on OS X? maybe the php tidy extension works? http://php.net/tidy d -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP source code formatter for OS X

2005-03-16 Thread DuSTiN KRySaK
Does anyone know of a PHP source code formatter to clean up sloppy code that runs on OS X? d -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-26 Thread John Holmes
Tim Burgan wrote: I was trying to use file(), with some problems.. thank you for your suggestions to use file_get_contents(). Perfect! You're all right, it works really well. I hope you didn't miss the mention of htmlentities(), also. If you did, then you'll figure it out the first time you try

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-26 Thread Tim Burgan
Thank you everyone, I was trying to use file(), with some problems.. thank you for your suggestions to use file_get_contents(). Perfect! You're all right, it works really well. Thanks Tim ... Tim Burgan. Website & E-Commerce Developer Web: ... -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] source code protection

2005-02-26 Thread Guillermo Rauch
> Hi there! > > What's the point of doing that? The PHP-codes are well protected if they are > on a well > configured server. Sometimes you want to sell protected code $.$ > > /G > @varupiraten.se -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

Re: [PHP] source code protection

2005-02-26 Thread Gustav Wiberg
Hi there! What's the point of doing that? The PHP-codes are well protected if they are on a well configured server. /G @varupiraten.se - Original Message - From: "shabanip" <[EMAIL PROTECTED]> To: Sent: Saturday, February 26, 2005 4:43 PM Subject: [PHP] source

Re: [PHP] source code protection

2005-02-26 Thread Joe Wollard
Shabanip, Zend provides a package for doing just this, but it comes with a price tag starting nigh to $1,000. You can find it here: http://www.zend.com/store/products/zend-encoder.php They do offer a free evaluation so you can "try before you buy" ;-) shabanip wrote: is there any way to protect

[PHP] source code protection

2005-02-26 Thread shabanip
is there any way to protect PHP files source code? thanks, Payam Shabanian shabanip -at- avapajoohesh.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Yann Larrivee
PROTECTED]> > >To: "[php] PHP General List" > >Subject: [PHP] HOWTO read PHP source code into a textarea > >Date: Fri, 25 Feb 2005 10:26:36 +1030 > >MIME-Version: 1.0 > >Received: from lists.php.net ([216.92.131.4]) by mc10-f12.hotmail.com with > &

RE: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tyler Replogle
Try php.net for flat file date basing. It should tell you how to read a line and write to a new line. From: Tim Burgan <[EMAIL PROTECTED]> To: "[php] PHP General List" Subject: [PHP] HOWTO read PHP source code into a textarea Date: Fri, 25 Feb 2005 10:26:36 +1030 MIME-Versi

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Richard Lynch
Tim Burgan wrote: > I have a file 'nav.php', whose source code I want to load into the > textarea on page 'aaa.php', so the source can be edited and changed. > > Is there a resource that I can read to help me do this? The User Contributed notes in: http://php.net/htmlentities should prove enlighte

[PHP] Re: HOWTO read PHP source code into a textarea

2005-02-25 Thread Jamie Alessio
I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? Tim, How about putting this in aaa.php? {$str}"; ?> and on form post something like this: You'll need er

RE: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Mikey
> I have a file 'nav.php', whose source code I want to load > into the textarea on page 'aaa.php', so the source can be > edited and changed. > > Is there a resource that I can read to help me do this? If you want to render HTML into a textarea then I am afraid you are on a hiding to nothing -

[PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tim Burgan
Hello, I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

[PHP] Source code/Zend expert required

2004-12-05 Thread Colin
Hi, I need someone who knows a good deal about editing the php source code and especially the session source code. I need one urgently to help me in my school project. Please help! contact me cokeeffe[at]gmail.com cheers -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] source code display

2004-06-07 Thread Ben Ramsey
Oh, I also meant to mention this: Are you sure that Apache is loading in the correct PHP module? The following lines are in my httpd.conf file: LoadModule php4_module modules/libphp4.so AddType application/x-httpd-php php Assuming you're using PHP 3 instead of PHP 4, I guess you would load php3

Re: [PHP] source code display

2004-06-07 Thread Ben Ramsey
JN> Don't know if it matters or not, but all the 'examples' I've seen JN> have the dot before the extension, ie JN> JN> AddType application/x-httpd-php .php .php3 I've never used the dot (.) before the extension in Apache, and all works well. -- Regards, Ben Ramsey http://benramsey.com

Re: [PHP] source code display

2004-06-07 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: Yes. AddType application/x-httpd-php php php3 Don't know if it matters or not, but all the 'examples' I've seen have the dot before the extension, ie AddType application/x-httpd-php .php .php3 -- John C. Nichel KegWorks.com 716.856.9675 [EMAIL PROTECTED] --

RE: [PHP] source code display

2004-06-07 Thread Nguyen, Long P (Mission Systems)
Yes. AddType application/x-httpd-php php php3 -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 9:49 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] source code display Nguyen, Long P (Mission Systems) wrote: > Hi - > > When I try to br

Re: [PHP] source code display

2004-06-07 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: Hi - When I try to bring up an "index.php3" file on a browser, what display are source codes. And when I tried to bring up the same "index.php" file, I get the following: Is your web server parsing *.php3 files as php? Apache: AddType application/x-httpd-

Re: [PHP] source code display

2004-06-07 Thread Matt Matijevich
[snip] When I try to bring up an "index.php3" file on a browser, what display are source codes. [/snip] I dont see http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] source code display

2004-06-07 Thread Nguyen, Long P (Mission Systems)
Hi - When I try to bring up an "index.php3" file on a browser, what display are source codes. And when I tried to bring up the same "index.php" file, I get the following: _ setCols(2); $loginBox->addRow('Username'); $loginBox->addRow(

RE: [PHP] Source code

2003-11-07 Thread PHPLover
ards, ___ PHPLover "Göd döësn't pläy dícë." - Älbërt Ëínstëín -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 9:27 PM To: John Nichel; PHPLover Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Sour

Re: [PHP] Source code

2003-11-06 Thread Chris Shiflett
> 1. Is it possible to download the entire PHP site so that i can learn > from the source code at my liesure. I know that source code of PHP can > be accessible through CVS but is there any anonymous FTP or a zip file > download? Not to my knowledge. If you don't like using CVS, you can always bro

Re: [PHP] Source code

2003-11-06 Thread John Nichel
PHPLover wrote: I have two questions. 1. Is it possible to download the entire PHP site so that i can learn from the source code at my liesure. I know that source code of PHP can be accessible through CVS but is there any anonymous FTP or a zip file download ?? 2. How can i implement the new feat

[PHP] Source code

2003-11-06 Thread PHPLover
I have two questions. 1. Is it possible to download the entire PHP site so that i can learn from the source code at my liesure. I know that source code of PHP can be accessible through CVS but is there any anonymous FTP or a zip file download ?? 2. How can i implement the new feature (installed i

[PHP] php source code//php-imap/ php-devel ..etc

2003-08-09 Thread Nabil
,, why should i get zlib (by example)??? is there any documentation with a clear straight exapmle how do i compile it with all what i need (like apache - mysql - mssql - gd - and more ??) what exactly the php source code has packeges ??? Nabil -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] php source code//php-imap/ php-devel ..etc

2003-08-09 Thread Jason Wong
- mssql - gd - and more ??) There must be loads of tutorials that covers installation. Try "LAMP". > what exactly the php source code has packeges ??? Probably more than you need. Just decide what functionality you need, look it up in the manual and see what the requirements are.

Re: [PHP] RE: PHP source code

2002-09-20 Thread Chris Shiflett
u, 19 Sep 2002 16:50:16 +0200 >>>[EMAIL PROTECTED] (Oliver Witt) wrote: >>> >>>>Hi, >>>>Is there any way to read php source code? I didn't think >>>> >>so until I >> >> >>>>heard about people you have done that..

Re: [PHP] Re: PHP source code

2002-09-20 Thread Oliver Witt
Michael Geier schrieb: > PHP Source code is only available on the server, and will never be shown to > the client (unless you create a tool to allow them to see the source; > see show_source() ); > > And you can always put your authentication data (username/passwords) in an >

[PHP] RE: PHP source code

2002-09-20 Thread Tim Ward
then keep this info in a config file off root and use a data abstraction class to connect. Tim www.chessish.com > -Original Message- > From: Oliver Witt [mailto:[EMAIL PROTECTED]] > Sent: 19 September 2002 19:15 > To: [EMAIL PROTECTED]; Stephan Seidt > Subject: Re:

Re: [PHP] Re: PHP source code

2002-09-19 Thread Support @ Fourthrealm.com
; [EMAIL PROTECTED] (Oliver Witt) wrote: > > > > > > > Hi, > > > > Is there any way to read php source code? I didn't think so until I > > > > heard about people you have done that... > > > > Kind regards, > > > > Olive

Re: [PHP] PHP source code

2002-09-19 Thread 1LT John W. Holmes
> Hi, > Is there any way to read php source code? I didn't think so until I > heard about people you have done that... > Kind regards, > Oliver I tend to read it left to right, but to each his own ---John Holmes... -- PHP General Mailing List (http://www.php.net/) T

[PHP] Re: PHP source code

2002-09-19 Thread Stephan Seidt
secret-file stuff. bye, blizz On Thu, 19 Sep 2002 20:15:06 +0200, [EMAIL PROTECTED] (Oliver Witt) wrote: > Stephan Seidt schrieb: > > > On Thu, 19 Sep 2002 16:50:16 +0200 > > [EMAIL PROTECTED] (Oliver Witt) wrote: > > > > > Hi, > > > Is there any way to rea

[PHP] Re: PHP source code

2002-09-19 Thread Oliver Witt
Stephan Seidt schrieb: > On Thu, 19 Sep 2002 16:50:16 +0200 > [EMAIL PROTECTED] (Oliver Witt) wrote: > > > Hi, > > Is there any way to read php source code? I didn't think so until I > > heard about people you have done that... > > Kind regards, >

Re: [PHP] PHP source code

2002-09-19 Thread Joseph W. Goff
PHP is open source so anyone can get the source code to it. You can find it at http://www.php.net/downloads.php - Original Message - From: "Oliver Witt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 19, 2002 9:50 AM Subject: [PHP] PHP so

[PHP] Re: PHP source code

2002-09-19 Thread Stephan Seidt
On Thu, 19 Sep 2002 16:50:16 +0200 [EMAIL PROTECTED] (Oliver Witt) wrote: > Hi, > Is there any way to read php source code? I didn't think so until I > heard about people you have done that... > Kind regards, > Oliver > Do you mean the source of php.net ? Try http://de

[PHP] PHP source code

2002-09-19 Thread Oliver Witt
Hi, Is there any way to read php source code? I didn't think so until I heard about people you have done that... Kind regards, Oliver -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Source code

2002-09-06 Thread liljim
ars($mem); > > $mem = nl2br($mem); > > echo $mem; > > ?> > > > > - Original Message - > > From: "Roman Duriancik" <[EMAIL PROTECTED]> > > To: "PHP-General" <[EMAIL PROTECTED]> > > Sent: Friday, September 06, 20

Re: [PHP] Source code

2002-09-06 Thread lallous
nal Message - > From: "Roman Duriancik" <[EMAIL PROTECTED]> > To: "PHP-General" <[EMAIL PROTECTED]> > Sent: Friday, September 06, 2002 11:53 AM > Subject: [PHP] Source code > > > > How I show in IE source code of html page with php ? > &

Re: [PHP] Source code

2002-09-06 Thread adrian murphy
add nl2br() to make it look pretty e.g - Original Message - From: "Roman Duriancik" <[EMAIL PROTECTED]> To: "PHP-General" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:53 AM Subject: [PHP] Source code > How I show in IE source code of

[PHP] Source code

2002-09-06 Thread Roman Duriancik
How I show in IE source code of html page with php ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Source Code for the CNN Grabber

2002-03-28 Thread Chris Boget
> This is the source, which is to advanced for me to debug!!! > Waiting on their responce and maybe they can help me.Anybody have any > clues Perhaps if you told us what was going wrong? Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

  1   2   >