RE: [PHP] PHP code problem with pages

2012-01-22 Thread HallMarc Websites
> > Maybe my subject line is not descriptive as I wish, but I just did not know > how to put on it. > > I have the following problem, I'm using jQuery to make a slide effect > (horizontal), everything seems to be working find, but I have to add a mask > with a white color background, I did this b

Re: [PHP] PHP code problem with pages

2012-01-21 Thread Daniel Brown
On Sat, Jan 21, 2012 at 20:07, Carlos Sura wrote: > Hello Mates, > > Maybe my subject line is not descriptive as I wish, but I just did not know > how to put on it. > > I have the following problem, I'm using jQuery to make a slide effect > (horizontal), everything seems to be working find, but I

Re: [PHP] PHP code will not work

2008-07-10 Thread Daniel Brown
On Thu, Jul 10, 2008 at 11:07 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: >>$_ENV > >>$_SERVER > > $_ENV and $_SERVER are. Though their contents are doubtless different. Proof that old dogs can learn new tricks. As n00b and fundamental as it may be, I took for granted that th

Re: [PHP] PHP code will not work

2008-07-10 Thread Richard Heyes
$_ENV >$_SERVER $_ENV and $_SERVER are. Though their contents are doubtless different. -- Richard Heyes Employ me: http://www.phpguru.org/cv -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP code will not work

2008-07-10 Thread Daniel Brown
On Thu, Jul 10, 2008 at 2:15 AM, Ted Wood <[EMAIL PROTECTED]> wrote: > > PHP at the command line doesn't run within a web server environment. Correct. EGPCS is inaccessible via the CLI (unless you force-populate the variables and arrays). Only via a web server will you have access to:

Re: [PHP] PHP code will not work

2008-07-09 Thread Ted Wood
PHP at the command line doesn't run within a web server environment. ~Ted On 9-Jul-08, at 11:07 PM, Sanjay Mantoor wrote: Hi, I found $_SERVER['HTTP_USER_AGENT'] works when you are using with browser by server like Apache. If you are executing your code like script in command prompt it may

Re: [PHP] PHP code will not work

2008-07-09 Thread Sanjay Mantoor
Hi, I found $_SERVER['HTTP_USER_AGENT'] works when you are using with browser by server like Apache. If you are executing your code like script in command prompt it may not work. I got below :- PHP Notice: Undefined index: HTTP_USER_AGENT If you use print_r($_SERVER) , you can see all the listi

Re: [PHP] PHP code will not work

2008-07-09 Thread Mike V
I had this problem and just figured it out. I was copying and pasting the code snippet from the tutorials page to my test editor and in the process picked up an invisible ctrl char. Doh!! Joseph Subida wrote: > > > The error I get when I try > > echo $_SERVER['HTTP_USER_AGENT']; > ?> > >

Re: [PHP] PHP code will not work

2008-06-13 Thread Daniel Brown
On Fri, Jun 13, 2008 at 1:51 PM, PJ <[EMAIL PROTECTED]> wrote: > > I had a similar problem and this was suggested and it worked for me: > > Try to put the global $_SERVER['HTTP_USER_AGENT'] into {}brackets: > > echo '{$_SERVER['HTTP_USER_AGENT']}'; > > I'm not sure about the single quotes in your s

Re: [PHP] PHP code will not work

2008-06-13 Thread PJ
Joseph Subida wrote: Daniel Brown wrote: On Wed, Jun 11, 2008 at 11:51 PM, Joseph Subida <[EMAIL PROTECTED]> wrote: Hi. I am new to PHP. I found a tutorial that said to copy and paste the code into a .php document and open it in my browser: I'm pretty sure PHP is enabled on my computer. I

Re: [PHP] PHP code will not work

2008-06-13 Thread Daniel Brown
On Fri, Jun 13, 2008 at 2:09 AM, Joseph Subida <[EMAIL PROTECTED]> wrote: > > 105: 106: echo $_SERVER['HTTP_USER_AGENT']; > 107: ?> > > All the code before line 105 is code that I've been messing around with. I > tried testing those three lines in its own file. But I still get the same > error: >

Re: [PHP] PHP code will not work

2008-06-12 Thread Joseph Subida
Daniel Brown wrote: On Wed, Jun 11, 2008 at 11:51 PM, Joseph Subida <[EMAIL PROTECTED]> wrote: Hi. I am new to PHP. I found a tutorial that said to copy and paste the code into a .php document and open it in my browser: I'm pretty sure PHP is enabled on my computer. I've tested code such as:

Re: [PHP] PHP code will not work

2008-06-12 Thread Daniel Brown
On Wed, Jun 11, 2008 at 11:51 PM, Joseph Subida <[EMAIL PROTECTED]> wrote: > Hi. > > I am new to PHP. I found a tutorial that said to copy and paste the code > into a .php document and open it in my browser: > > echo $_SERVER['HTTP_USER_AGENT']; > ?> > > I'm pretty sure PHP is enabled on my comput

Re: [PHP] PHP code will not work

2008-06-12 Thread Nathan Nobbe
On Wed, Jun 11, 2008 at 9:51 PM, Joseph Subida <[EMAIL PROTECTED]> wrote: > Hi. > > I am new to PHP. I found a tutorial that said to copy and paste the code > into a .php document and open it in my browser: > > echo $_SERVER['HTTP_USER_AGENT']; > ?> > > I'm pretty sure PHP is enabled on my comput

Re: [PHP] PHP Code I Must find

2008-05-30 Thread Thijs Lensselink
Quoting John Taylor-Johnston <[EMAIL PROTECTED]>: Seen that in the manual. I'll need a routine of some sort I guess. I'll get my cookie cutters out tomorrow and see what I can create. I make cool gingerbread men, for a dude. **htmlentities() does most of what I want, sort of. **lists-php wrote:

Re: [PHP] PHP Code I Must find

2008-05-29 Thread John Taylor-Johnston
Seen that in the manual. I'll need a routine of some sort I guess. I'll get my cookie cutters out tomorrow and see what I can create. I make cool gingerbread men, for a dude. **htmlentities() does most of what I want, sort of. **lists-php wrote: you might try looking at the php manual. start wit

Re: [PHP] PHP Code I Must find

2008-05-29 Thread John Taylor-Johnston
Ok. lists-php wrote: that's not UTF, rather just the html representation of the ascii codes for the characters. [someone else has already pointed you to an ascii table.] when put in the context of the "mailto:"; it's actually fairly easy for a bot to identify and decode (i'm not saying that

Re: [PHP] PHP Code I Must find

2008-05-29 Thread TG
You could look at the email cloaking routine that Joomla uses. Here's a starting point: http://dev.joomla.org/component/option,com_jd-wiki/Itemid,/id,references:joomla.framework:html:jhtmlemail-cloak/ -TG - Original Message - From: John Taylor-Johnston <[EMAIL PROTECTED]> To: PHP-Genera

Re: [PHP] PHP Code I Must find

2008-05-29 Thread Jeremy Privett
John Taylor-Johnston wrote: A web site deploys what I think are UTF characters to mask email addresses. Is there there a php function I can use to generate this? Or was this hand-done? It is crackable, but a darned good stab at the problem of spiders at the same. Any feedback, info or code wou

Re: [PHP] PHP code to write excel spreadsheet with multiple workbooks

2008-03-28 Thread Wolf
Mary Anderson <[EMAIL PROTECTED]> wrote: > Hi all, > I have a linux based web app which prints an html screen of results. > My users really want Excel spreadsheets with the same results. There > is a PEAR application which does this, but from the PEAR description it > seems to be

Re: [PHP] PHP code to write excel spreadsheet with multiple workbooks

2008-03-28 Thread Andrew Ballard
On Fri, Mar 28, 2008 at 1:12 PM, Mary Anderson <[EMAIL PROTECTED]> wrote: > Hi all, > I have a linux based web app which prints an html screen of results. > My users really want Excel spreadsheets with the same results. There > is a PEAR application which does this, but from the PEAR descr

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-16 Thread Per Jessen
Casey wrote: > Maybe I didn't read well enough, but if the PHP produces proper HTML > on the command line, shouldn't it work in the browser too? Not necessarily. Running stand-alone and in the webserver are two completely different environments. > My logic is that if the title displays, then

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-16 Thread Jochem Maas
Casey wrote: > On Dec 15, 2007 11:27 PM, Jochem Maas <[EMAIL PROTECTED]> wrote: >> Casey wrote: >>> Comment out all Javascript. >> Casey - exactly how would javascript being causing a webserver to segfault >> in this context??? >> >> >>> On Dec 15, 2007, at 2:00 PM, "Daniel Brown" <[EMAIL PROTECTED

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Casey
On Dec 15, 2007 11:27 PM, Jochem Maas <[EMAIL PROTECTED]> wrote: > Casey wrote: > > Comment out all Javascript. > > Casey - exactly how would javascript being causing a webserver to segfault > in this context??? > > > > > > On Dec 15, 2007, at 2:00 PM, "Daniel Brown" <[EMAIL PROTECTED]> wrote: > >

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Jochem Maas
Casey wrote: > Comment out all Javascript. Casey - exactly how would javascript being causing a webserver to segfault in this context??? > > On Dec 15, 2007, at 2:00 PM, "Daniel Brown" <[EMAIL PROTECTED]> wrote: > >> On Dec 15, 2007 4:55 PM, Mary Anderson <[EMAIL PROTECTED]> >> wrote: >>> >>> M

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Casey
Comment out all Javascript. On Dec 15, 2007, at 2:00 PM, "Daniel Brown" <[EMAIL PROTECTED]> wrote: On Dec 15, 2007 4:55 PM, Mary Anderson <[EMAIL PROTECTED]> wrote: My code http://demog.berkeley.edu/~maryfran/memdev/get_data_set.php Mary, Can you provide the actual code for the

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Daniel Brown
On Dec 15, 2007 4:55 PM, Mary Anderson <[EMAIL PROTECTED]> wrote: > > My code > > http://demog.berkeley.edu/~maryfran/memdev/get_data_set.php > Mary, Can you provide the actual code for the page? None of us can really help you out too much without seeing more than a blank page. -- Dan

Re: [PHP] Php code in html buttons

2007-07-11 Thread Richard Lynch
On Tue, July 10, 2007 5:59 pm, k w wrote: > I'm trying to make a button execute some php code when the button is > clicked. I'm not sure if it is the button i'm coding wrong or the php > code. > Here is the code I am using. > > echo ""; > ?> Actually, since I've answered this one the same way qui

Re: [PHP] Php code in html buttons

2007-07-11 Thread Richard Lynch
On Tue, July 10, 2007 5:59 pm, k w wrote: > I'm trying to make a button execute some php code when the button is > clicked. I'm not sure if it is the button i'm coding wrong or the php > code. > Here is the code I am using. > > echo ""; > ?> [sportscaster voice-over] Joe: Hey Bob, let's look at

Re: [PHP] Php code in html buttons

2007-07-11 Thread Sancar Saran
Hello, What about this. test.php " } else { $strReturn = "do whatever want to with your mysql result"; } echo $strReturn; ?> Hope helps. To ajaxing this page please look www.xajaxproject.org Regards On Wednesday 11 July 2007 01:59:42 k w wrote: > I'm trying to make a button execute some ph

Re: [PHP] Php code in html buttons

2007-07-10 Thread jekillen
On Jul 10, 2007, at 3:59 PM, k w wrote: I'm trying to make a button execute some php code when the button is clicked. I'm not sure if it is the button i'm coding wrong or the php code. Here is the code I am using. echo ""; ?> I've got all my variables stored in the php page, and I know the

Re: [PHP] Php code in html buttons

2007-07-10 Thread Richard Davey
Hi k, Tuesday, July 10, 2007, 11:59:42 PM, you wrote: > I'm trying to make a button execute some php code when the button is > clicked. I'm not sure if it is the button i'm coding wrong or the php code. > Here is the code I am using. > echo ""; ?>> Everything about this approach is wrong. PHP

Re: [PHP] php code to upload a url correctly

2007-01-29 Thread Richard Lynch
On Fri, January 26, 2007 8:10 am, Corden James (RW3) CM&MC Manchester wrote: > I have a form in which users submit a url. I am having problems as > some > people submit the url in the format http://www.blah.blah.org > while others submit in the format > www.blah.blah.or

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Jochem Maas
Dave Goodchild wrote: > Wouldn't it have been less hassle to not send that comment when all I > was doing was trying to help, am pressed for time, and copied and pasted > my solution? no hassle on my part. :-D I doubt you want me to point out that you original comment that I commented on and the

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Jochem Maas
Stut wrote: > Jochem Maas wrote: >> Németh Zoltán wrote: > ... > > I don't have numbers, but I'd bet this is quicker than doing a parse_url. I didn't realise speed was an issue. and if it really was an issue I would suggest offloading the url normailization into a batch routine that is run out

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Stut
Jochem Maas wrote: Németh Zoltán wrote: You should first check the url and only add "http://"; at the beginning if its not there I do it like if (substr($url, 0, 4) != "http") {$url = "http://"; . $url;} in my website, although it is probably not the most elegant solution ;) it will break i

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Németh Zoltán
On p, 2007-01-26 at 16:46 +0100, Jochem Maas wrote: > Németh Zoltán wrote: > > On p, 2007-01-26 at 14:10 +, Corden James (RW3) CM&MC Manchester > > wrote: > >> I have a form in which users submit a url. I am having problems as some > >> people submit the url in the format http://www.blah.blah.o

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Jochem Maas
Dave Goodchild wrote: > This is what I use: > > $site = (!preg_match('#^http://#', $_POST['c_site'])) ? > raw_param(trim(strip_tags("http:\/\/" . $_POST['c_site']))) : > raw_param(trim(strip_tags($_POST['c_site']))); this is much better: http://php.net/parse_url > > don't worry about raw_param,

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Jochem Maas
Németh Zoltán wrote: > On p, 2007-01-26 at 14:10 +, Corden James (RW3) CM&MC Manchester > wrote: >> I have a form in which users submit a url. I am having problems as some >> people submit the url in the format http://www.blah.blah.org >> while others submit in the

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Dave Goodchild
This is what I use: $site = (!preg_match('#^http://#', $_POST['c_site'])) ? raw_param(trim(strip_tags("http:\/\/" . $_POST['c_site']))) : raw_param(trim(strip_tags($_POST['c_site']))); don't worry about raw_param, that's a function of my own, but you get the idea.

Re: [PHP] php code to upload a url correctly

2007-01-26 Thread Németh Zoltán
On p, 2007-01-26 at 14:10 +, Corden James (RW3) CM&MC Manchester wrote: > I have a form in which users submit a url. I am having problems as some > people submit the url in the format http://www.blah.blah.org > while others submit in the format > www.blah.blah.org <

Re: [PHP] PHP code in a MySQL record

2005-07-29 Thread André Medeiros
Either what Kris says, or you can use a templating engine. See Smarty (http://smarty.php.net) On 7/29/05, Kristen G. Thorson <[EMAIL PROTECTED]> wrote: > Is there a particular reason you need *PHP* in the database? If not, > then use a placeholder system of some sort ( like #var# ) and str_repla

Re: [PHP] PHP code in a MySQL record

2005-07-29 Thread Kristen G. Thorson
Is there a particular reason you need *PHP* in the database? If not, then use a placeholder system of some sort ( like #var# ) and str_replace(): while( $row=mysql_fetch_row($result) ) { echo str_replace( '#var#', $that_var, $row['entry'] ); } kgt Nathaniel Hall wrote: I am working

Re: [PHP] PHP CODE TO DISPLAY ISP

2005-03-29 Thread Colin Ross
and least we forgot about all the users coming from behind a proxy farm with a different ip for each request.. AOL C On Mon, 28 Mar 2005 12:28:32 -0700, Leif Gregory <[EMAIL PROTECTED]> wrote: > Hello jenny, > > Monday, March 28, 2005, 9:36:07 AM, you wrote: > j> i am making a website in php

Re: [PHP] PHP CODE TO DISPLAY ISP

2005-03-28 Thread Leif Gregory
Hello jenny, Monday, March 28, 2005, 9:36:07 AM, you wrote: j> i am making a website in php and i will appreciate if anybody can j> tell me the php code to : j> - (1)display isp name, One problem you're going to run into is that by using $_SERVER['REMOTE_ADDR'] oftentimes, you'll end up with just

Re: [PHP] PHP CODE TO DISPLAY ISP

2005-03-28 Thread A. S. Milnes
On Mon, 2005-03-28 at 17:36, jenny mathew wrote: > hello to all, > i am making a website in php and i will appreciate if anybody can tell > me the php code to :- > (1)display isp name, > (2) country of the visitor, > (3)operatng system of the visitors. Have a look at http://uk2.php.net/reserved.va

Re: [PHP] PHP code to analize email HELP

2005-01-09 Thread Zareef Ahmed
On Sun, 09 Jan 2005 18:00:09 -0800, Robby Russell <[EMAIL PROTECTED]> wrote: > On Sun, 2005-01-09 at 19:20 -0500, Alejandro Marín Uribe wrote: > > Hi all > > > > I really need help. I have an idea about to create a piece of code that it > > analyze an email, extract certain data (this email contain

Re: [PHP] PHP code to analize email HELP

2005-01-09 Thread Robby Russell
On Sun, 2005-01-09 at 19:20 -0500, Alejandro MarÃn Uribe wrote: > Hi all > > I really need help. I have an idea about to create a piece of code that it > analyze an email, extract certain data (this email contains Name, email and > telephone of a person in a standar html) and insert this data in

Re: [PHP] php code in a .js file?

2004-04-29 Thread Marek Kilimajer
Craig Donnelly wrote: Why not just use a .php instead of a .js? Regards, Craig That was what I meant ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php code to connect to MS-SQL SERVER

2004-03-18 Thread Adam Voigt
mssql_connect('repo',$User,$Pass); mssql_select_db('test'); On Thu, 2004-03-18 at 02:31, Rafi Sheikh wrote: > Hello folks. > > Basics: Apache 1.3.29, PHP 4.3.4, on WIN 2K-Pro > > SYS DSN=using SQL Server driver a connection exists (tested via Ms-Access) > against a SQL Server > > PROBLEM

Re: [PHP] PHP code encryption

2004-02-03 Thread Jason Sheets
I and another person am now maintaining Turck MMCache, another release will be made shortly but until then the current release should work fine. There is also a web based encoder for Turck MMCache at http://phpcoder.sourceforge.net The great thing about MMCache is it is open source and usually

RE: [PHP] PHP code encryption

2004-02-03 Thread Adrian Teasdale
Here are some for you to try: www.sourceguardian.com www.zend.com www.ioncube.com There is also one within mmCache (http://turck-mmcache.sourceforge.net/). Just read the forum about the current status of this open source project as the founder has gone to work for Zend and will no longer be main

RE: [PHP] PHP code documentation tool

2004-01-08 Thread Vincent Jansen
I prefer phpDocumentor http://phpdocu.sourceforge.net/ --- Vincent Jansen -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: donderdag 8 januari 2004 16:44 To: Karam Chand Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP code documentation tool Hello Karam

Re: [PHP] PHP code documentation tool

2004-01-08 Thread Matt Matijevich
[snip] What is the best way to document such projects? How you developers document your project? [/snip] GIYF http://phpdocu.sourceforge.net/ http://www.epersonae.com/snapping/archives/000390.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub

Re: [PHP] PHP code documentation tool

2004-01-08 Thread Richard Davey
Hello Karam, Thursday, January 8, 2004, 3:41:36 PM, you wrote: KC> Is there any tool like doc-o-matic for PHP or anybody KC> developing something like that? http://www.phpdoc.de/ -- Best regards, Richardmailto:[EMAIL PROTECTED] -- PHP General Mailing List (http:/

RE: [PHP] php code

2003-10-21 Thread Jay Blanchard
[snip] Actually i have created the field type as varchar..i am need to insert some decimal values in that varchar field and use that values for calculation...so it is possible to store the float value eventhough i specified as varchar ?..and also i can use that values for calculation ?? [/snip]

Re: [PHP] PHP code in form field - var_export() (slashes)?

2003-09-24 Thread Jason Wong
On Wednesday 24 September 2003 22:43, Shawn McKenzie wrote: > I'm storing some multi-dimensional associative arrays in the file and then > when I need the values somewhere I just include the file and voila my > arrays are defined. Seemed better than looping through arrays writing to a > file and

Re: [PHP] PHP code in form field - var_export() (slashes)?

2003-09-24 Thread Shawn McKenzie
I'm storing some multi-dimensional associative arrays in the file and then when I need the values somewhere I just include the file and voila my arrays are defined. Seemed better than looping through arrays writing to a file and then using the same loop structure to read lines from the file and as

Re: [PHP] PHP code in form field - var_export() (slashes)?

2003-09-23 Thread Jason Wong
On Wednesday 24 September 2003 12:00, Shawn McKenzie wrote: > O.K. I am collecting PHP code in a textarea and then using var_export() to > a file for later use. In the file, the PHP is in single-quotes. I'm curious, why are you using var_export() if it's causing so many problems? Acutally why

Re: [PHP] Php code to create php code

2003-06-11 Thread Ernest E Vogelsinger
At 14:05 11.06.2003, Sancar Saran said: [snip] >Hi, >Is there any example or/and tutorial for create php code with using php. [snip] It's simple, frankly: $code = EOC echo 'Hello World, the current time is ', date('H

Re: [PHP] php code in templates... how to?

2002-10-03 Thread olinux
eval() should work for you http://www.php.net/eval You also may want to consider including files coded something like this: Then you just set the values for the vars in your code - include the file. Josh --- Hendrik Daldrup <[EMAIL PROTECTED]> wrote: > Hi, > > i am working with tem

Re: [PHP] PHP code optimization

2002-07-09 Thread Nick Oostveen
I could be wrong, but I seem to remember reading somewhere that using ?> text Peter Thoenen wrote: > >>Question on optimizing code for quicker runtimes. Which is quicker (this >>is on a webpage also..NOT >>commandline)? >> >> >> >>OR >> >> abc > >Because the difference is going to be undetecta

Re: [PHP] PHP code optimization

2002-07-09 Thread Chris Shiflett
Peter Thoenen wrote: >Question on optimizing code for quicker runtimes. >Which is quicker (this is on a webpage also..NOT >commandline)? > > > >OR > > abc > Because the difference is going to be undetectable, this would probably be a question that only someone really familiar with the engine

Re: [PHP] PHP code optimization

2002-07-09 Thread Analysis & Solutions
On Tue, Jul 09, 2002 at 12:32:59PM -0700, Peter Thoenen wrote: > Which is quicker (this is on a webpage also..NOT > commandline)? > > > OR > abc The difference is very marginal. Write whichever makes more sense in the context. Short tidbits just don't matter. Larger stretches of text are e

Re: [PHP] PHP code optimization

2002-07-09 Thread Kevin Stone
I'm just guessing but I would think there would be no difference. The only way I think there would be a differnce is if you did many many echo statements as opposed to one echo or one ?>output block To: <[EMAIL PROTECTED]> Sent: Tuesday, July 09, 2002 1:32 PM Subject: [PHP] PHP code optimization

RE: [PHP] PHP code in a database

2002-06-07 Thread Jared Boelens
This might be what you need. http://www.php.net/manual/en/function.eval.php -Jared -Original Message- From: Jean-Rene Cormier [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 12:11 PM To: [EMAIL PROTECTED] Subject: [PHP] PHP code in a database I'm trying to make a script that'll

Re: [PHP] PHP code in a database

2002-06-07 Thread Mark Heintz PHP Mailing Lists
You want the eval() function. manual entry: http://www.php.net/eval mh. On Fri, 7 Jun 2002, Jean-Rene Cormier wrote: > I'm trying to make a script that'll take some pages from a database but > I want it to execute the PHP that's in the pages that it'll fetch from > the database. > > Say it ge

Re: [PHP] php code generator

2002-03-21 Thread Cameron Bales .:.
>We are trying to find a php code generator like Macromedia Ultradelv to >develope a web base app. Can someone recommend a few. the new GoLive does it, and has the Zend debugger integrated in it. I don't know how good it is. http://www.adobe.com/products/golive/movie_qt9.html the scary part

RE: [PHP] php code beautifier

2001-12-28 Thread Jerry Verhoef (UGBI)
What is a code beautifier? -Original Message- From: George Nicolae [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 1:47 AM To: [EMAIL PROTECTED] Subject: [PHP] php code beautifier do you know if exist a php code beautifier for win32? pls tell me the address. -- Best re

RE: [PHP] PHP code organization...

2001-11-22 Thread Dimitris Kossikidis
Try to break up html into different files for each browser type. Switch ($browser) { case "ns4" : include ns4.html; break; case "ie5" : include ie5.html; break; . . . default : include ie6.html; }

RE: [PHP] php code to fax

2001-10-26 Thread Chris Carbaugh
you have any questions, I'll do my best to help you out. Chris On Fri, 26 Oct 2001, Glenn Antoine wrote: > Date: Fri, 26 Oct 2001 08:20:12 -0500 > To: <[EMAIL PROTECTED]> > From: "Glenn Antoine" <[EMAIL PROTECTED]> > Subject: RE: [PHP] php code to fax >

Re: [PHP] php code to fax

2001-10-22 Thread Chris Carbaugh
Check out phpfax.sourceforge.net This is a project I have pretty much abandoned, and never even posted the code. I have had some people interested in it though, and would like to give the code to the community, I just never found the time. Drop me a line if your interested, and I'll do my best

RE: [PHP] php code to fax

2001-10-22 Thread Jerry Lake
I could be wrong, but it would seem easiest to have an an email to fax gateway and use your php to send mail Regards, Jerry Lake Interface Engineering Technician -Original Message- From: Glenn Antoine [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 6:39 AM To: [EMAIL PROT

Re: [PHP] php code security problem?

2001-06-30 Thread Rasmus Lerdorf
> Does anyone know the best way to secure php source code so it is not > group/world readable? > I can read other users' php source code by writing a simple php script. Turn on safe-mode. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] PHP code secrity on VirtualHost

2001-06-28 Thread Chadwick, Russell
Title: PHP code secrity on VirtualHost   I ran into the problem of certain code needing to suexec or do priveledged things that you dont want other domains to be able to do and I ended up writting my own apache module in C for lack of any other way.  If you come up with another solution I'd

Re: [PHP] PHP code to verify existing URL???

2001-04-04 Thread Steve Werby
"Mark Eckeard" <[EMAIL PROTECTED]> wrote: > Does anyone know of any PHP code that will take > a URL from a form and go to the web & verify if it > exists? fopen() will do it. You can use the socket functions. curl can be used if it was configured into your PHP install. You could also use an ex

Re: [PHP] PHP Code Obfuscator?

2001-02-17 Thread Michael Stearne
Joe, I think that the APC product (Alternative PHP Cache) may soon offer souce "encoding". I think I remember reading about that. Regard APC seems to be a very nice product. Check it out at http://apc.communityconnect.com/ Michael Joe Njeru wrote: > Jim, > > I also come from a third world c

Re: [PHP] PHP Code Obfuscator?

2001-02-17 Thread Joe Njeru
Jim, I also come from a third world country and the cost of buying software is also high just as Tiger mentioned. We did not have 200 years of free labour to advance ourselves as much as you did. Joe Njeru. Nairobi, Kenya -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-

Re: [PHP] PHP Code Obfuscator?

2001-02-16 Thread Jim Jagielski
At 3:30 AM +0800 2/17/01, Tiger Quimpo wrote: > >I could go with the Zend tools, I suppose. but there isn't enough >money here for that yet (third-world... who can afford software that >costs the same as the salaries of 8 to 10 programmers?). someday... > Even with the new Developer's Suite and