[PHP] XSL

2004-01-24 Thread Aidan Lister
I am attempting to put this in my XSL, a href=xsl:value-of select=link /, However I get a ton of errors. How do I do this properly? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] AFter the URL in PHP

2004-01-24 Thread Justin French
On Saturday, January 24, 2004, at 05:57 PM, Randy Johnson wrote: Hello, I am not sure if this is a php thing or not but hope is... I see some sites like this: www.domain.com/tree where tree is not a directory for example www.domain.com/tree/ would not work the word tree above is not

[PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Aidan Lister
How about checking the phpmyadmin documentation, where this is all clearly explained? Freedomware [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] It looks like all the databases I view with phpMyAdmin feature the following error message: The additional Features for working with

[PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Freedomware
Aidan Lister wrote: How about checking the phpmyadmin documentation, where this is all clearly explained? I thought it made more sense to see if anyone who's been through this before knows of a quick fix - before I dive into SEVEN documentation links, none of which strike me as particularly

[PHP] Importing Data with EMS MySQL Manager

2004-01-24 Thread Freedomware
I'm getting closer. I find that I can work around a lot of problems by creating tables in EMS MySQL Manager, which also has a neat feature for importing data from CSV files. Has anyone done this with EMS MysQL Manager before? If so, would you mind looking at

Re: [PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Jason Wong
On Saturday 24 January 2004 15:22, Freedomware wrote: Aidan Lister wrote: How about checking the phpmyadmin documentation, where this is all clearly explained? I thought it made more sense to see if anyone who's been through this before knows of a quick fix - before I dive into SEVEN

Re: [PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Freedomware
Jason Wong wrote: It makes even more sense to ask on the phpmyadmin list/forum? I thought this was a general purpose PHP list and some people who frequent this list had used phpMyAdmin. My mistake. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Jason Wong
On Saturday 24 January 2004 15:51, Freedomware wrote: I thought this was a general purpose PHP list It is. But your questions have nowt to do with PHP. and some people who frequent this list had used phpMyAdmin. My mistake. The people frequenting the phpMyAdmin list/forum are *more* likely

[PHP] mycrypt on local doesn't decode but does on web server?

2004-01-24 Thread Will
Hello, I am hoping that some body might be able to point out what is going wrong. Basically I am running apache2 etc (sokkit) on a local MS XP machine. I downloaded libmcrypt.dll from http://ftp.emini.dk/pub/php/win32/mcrypt/ as specified on php.net under Mcrypt Encryption Functions

Re: [PHP] mycrypt on local doesn't decode but does on web server?

2004-01-24 Thread Tom Rogers
Hi, Saturday, January 24, 2004, 11:02:23 PM, you wrote: W Hello, I am hoping that some body might be able to point outwhat is going wrong. W   W Basically I am running apache2 etc (sokkit) on a local MS W XPmachine. I downloaded libmcrypt.dll from W http://ftp.emini.dk/pub/php/win32/mcrypt/as

[PHP] Re: Using templates (Code User Interface)

2004-01-24 Thread rush
Hamid Hossain [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Always I have a problem that I don't know how to make my code away from the user interface files. I tried to use some template classes, but I did'nt like what I tired because some if statments are used inside the

[PHP] Re: XSL

2004-01-24 Thread Tobias Bradtke
Aidan Lister wrote: I am attempting to put this in my XSL, a href=xsl:value-of select=link /, However I get a ton of errors. How do I do this properly? try something like this: a href={link}/a or this: a xsl:attribute name=hrefxsl:value-of select=link //xsl:attribute /a (^untested,

php-general Digest 24 Jan 2004 15:24:48 -0000 Issue 2549

2004-01-24 Thread php-general-digest-help
php-general Digest 24 Jan 2004 15:24:48 - Issue 2549 Topics (messages 175608 through 175632): How do you set up table columns for numerals? 175608 by: Freedomware 175612 by: Giz 175613 by: Freedomware 175615 by: David OBrien Re: Securing php from rogue php

RE: [PHP] what PHP really needs

2004-01-24 Thread Mark Charette
-Original Message- From: Hamid Hossain [mailto:[EMAIL PROTECTED] As a ColdFusion Certified Developer I can say: You are right! In CF you can fire a sql statment and store its result in a variable which is not going to be removed from the server's memory after responding to the

Re: [PHP] Why we love Microsoft (0t)

2004-01-24 Thread Stuart
Ryan A wrote: Anyway, a 17yr old kid by the name of Mike Rowe opens up a webdesigning company and names it MikeRoweSoft (say it out loud..if you're really daft not to get it just be reading it)..then registers mikerowesoft.com...a couple of days later he gets an email from microsoft's lawyers to

Re: [PHP] Re: Additional Features for working with linked Tables have been deactivated.

2004-01-24 Thread Raditha Dissanayake
I do belive you may want to read the list newbie guide before making any more off topic posts. Please search the archives for it. Freedomware wrote: Jason Wong wrote: It makes even more sense to ask on the phpmyadmin list/forum? I thought this was a general purpose PHP list and some people

Re: [PHP] Why we love Microsoft (0t)

2004-01-24 Thread Freedomware
Stuart wrote: As for the argument that he's only 17, what the hell does that matter? His motivation was clearly to cash in on either the similarity or the publicity from the action MS would take. The lucky fscker got the latter. Gee, like Microsoft is such a tough sucker to hook. Frankly, I

[PHP] RewriteRule REGEX ?

2004-01-24 Thread Monty
My server runs Apache 2.0. I am trying to do a simple URL rewrite so that old URLs will map to our new style of URLS... From This: articles.php?id=999 To This:articles/999 In the .htaccess file for the htdocs folder that contains the web files, I put the following:

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
Like Hamid Said, if the ColdFusion server has the query already in memory. It doesn't need to send traffic to another server to get the information again. Most systems I've worked on have the db and the web server on different areas of a firewall, so you're going through a lot of excess steps if

Re: [PHP] what PHP really needs

2004-01-24 Thread John Nichel
Marlon Moyer wrote: Like Hamid Said, if the ColdFusion server has the query already in memory. It doesn't need to send traffic to another server to get the information again. Most systems I've worked on have the db and the web server on different areas of a firewall, so you're going through a

[PHP] Re: RewriteRule REGEX ?

2004-01-24 Thread DvDmanDT
Did you try to remove that '^' ? That means start.. In other words you are saying that the uri starts with articles, when I would think it starts with /articles... Yes, that could really matter... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com Monty [EMAIL PROTECTED] skrev i

[PHP] Re: RewriteRule REGEX ?

2004-01-24 Thread Monty
Yes, I did try removing both the ^ and the $, and adding a / in front of articles.php, but it made no difference. From: [EMAIL PROTECTED] (Dvdmandt) Reply-To: DvDmanDT [EMAIL PROTECTED] Newsgroups: php.general Date: Sat, 24 Jan 2004 19:06:09 +0100 To: [EMAIL PROTECTED] Subject: Re:

RE: [PHP] what PHP really needs

2004-01-24 Thread Mark Charette
On Sat, 24 Jan 2004, Marlon Moyer wrote: Like Hamid Said, if the ColdFusion server has the query already in memory. It doesn't need to send traffic to another server to get the information again. Most systems I've worked on have the db and the web server on different areas of a firewall, so

Re: [PHP] Using templates (Code User Interface)

2004-01-24 Thread Robert Cummings
On Sat, 2004-01-24 at 01:53, Hamid Hossain wrote: Hi, Always I have a problem that I don't know how to make my code away from the user interface files. I tried to use some template classes, but I did'nt like what I tired because some if statments are used inside the template. How can

[PHP] Re: RewriteRule REGEX ?

2004-01-24 Thread Paul Chvostek
On Sat, Jan 24, 2004 at 12:18:36PM -0500, Monty wrote: From This: articles.php?id=999 To This:articles/999 ... What am I doing wrong?? I suspect you may not be looking at the problem the right way. What exactly do you want to do? Normally, you'd go the other direction; that

[PHP] Message rejected

2004-01-24 Thread Piers Lauder
Hi! Your have sent me a message from an address marked as being primarily a source of SPAM (also known as unsolicited commercial e-mail), and the message has been discarded. If in fact this was a genuine non-SPAM message and you still wish to contact me, then you need to re-send the message from

Re: [PHP] what PHP really needs

2004-01-24 Thread John W. Holmes
Marlon Moyer wrote: But I think the original question was about a tree that took a long time to create, and application variables would be a plus in this situation. Again, if you're just talking about reading, how hard is it to just do this to save: $save_data = '?php $array = ' .

[PHP] Can we make .exe programs with php?

2004-01-24 Thread pehepe php
Can we make .exe programs with php? for example we can do it with delphi, vbasic.but can we do with php? _ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail -- PHP General

Re: [PHP] Can we make .exe programs with php?

2004-01-24 Thread Mark Charette
On Sat, 24 Jan 2004, pehepe php wrote: Can we make .exe programs with php? for example we can do it with delphi, vbasic.but can we do with php? No (and .exe is a convention that isn't universal, btw). PHP is an interpreted language, not a compiled one. -- Half the people know what they're

[PHP] Form variables + sessions, is this how it is supposed to work?

2004-01-24 Thread Paul
Thanks for any advice. If I register a session variable, set its value with one form and then try to change its value with another form, it seems to retain only the original value and is not replaced with the newly posted one? Is this how it is supposed to work and I have to unset the variable

[PHP] Threading PHP

2004-01-24 Thread Galen
Hi, This may be completely crazy, but let me tell you what I want to do: thread PHP. My server is a dual-processor 2 GHz machine, and it's not very loaded. I have a few tasks that are huge and lengthy and would benefit from being placed in their own thread if you will. This would serve to

Re: [PHP] Threading PHP

2004-01-24 Thread Lucas Gonze
One possibility is to have the code which first receives the request split it up into subrequests and do HTTP requests for the subrequests. Whether that makes sense depends on whether the overhead of an HTTP transaction is a big part of the execution time of the subrequests. - Lucas On

Re: [PHP] Threading PHP

2004-01-24 Thread Mark Charette
On Sat, 24 Jan 2004, Galen wrote: Hi, This may be completely crazy, but let me tell you what I want to do: thread PHP. Can you set processor affinity on your system? If so, you can pseudo thread by assigning processes to different CPUs; e.g., run your main Webserver on one processor and

Re: [PHP] Can we make .exe programs with php?

2004-01-24 Thread Evan Nemerson
On Saturday 24 January 2004 02:55 pm, Mark Charette wrote: On Sat, 24 Jan 2004, pehepe php wrote: Can we make .exe programs with php? for example we can do it with delphi, vbasic.but can we do with php? Not recommended for production boxes, but... http://pecl.php.net/bcompiler Also,

Re: [PHP] Threading PHP

2004-01-24 Thread Evan Nemerson
php.net/pcntl cvs.php.net/cvs.php/pecl/threads On Saturday 24 January 2004 03:24 pm, Galen wrote: Hi, This may be completely crazy, but let me tell you what I want to do: thread PHP. My server is a dual-processor 2 GHz machine, and it's not very loaded. I have a few tasks that are huge

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
Like Hamid Said, if the ColdFusion server has the query already in memory. It doesn't need to send traffic to another server to get the information again. Most systems I've worked on have the db and the web server on different areas of a firewall, so you're going through a lot of

Re: [PHP] Form variables + sessions, is this how it is supposed to work?

2004-01-24 Thread Jason Wong
On Sunday 25 January 2004 04:02, Paul wrote: If I register a session variable, set its value with one form and then try to change its value with another form, it seems to retain only the original value and is not replaced with the newly posted one? Is this how it is supposed to work and I

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
I don't have a problem with this method. It would be nice though to be able just set 1 application variable and be done with it. -Original Message- From: John W. Holmes Marlon Moyer wrote: But I think the original question was about a tree that took a long time to create,

RE: [PHP] what PHP really needs

2004-01-24 Thread Marlon Moyer
-Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] The problem I have with this is where the database DOES change, and not on any set interval. I used to work at Insight, and our product database changed constantly, at any give moment to account for pricing

[PHP] Re: Can we make .exe programs with php?

2004-01-24 Thread DvDmanDT
A while ago there was someone who announced a link to some program that allowed you to make exe's (yes, it works)... Although, it's 100% uncompiled (not even to bytecodes), so the only thing you gain is that it'll be easier to run... :p Also checkout this: http://binaryphp.sf.net -- // DvDmanDT

RE: [PHP] what PHP really needs

2004-01-24 Thread Mark Charette
f stock, etc. [Marlon Moyer] This isn't a situation that you would use a cached query. You would only use it when something doesn't change that often, or you have control of when it changes. Hell, I have stuff like that - it's called generate an include file with a cron job. Trivial. All

RE: [PHP] what PHP really needs

2004-01-24 Thread Mike Migurski
Let the db server handle query/cache consistency ... why put yet another server in the way that will have to be triggered by the underlying db to clear ITS cache? Very true, but tests I've done in the past with PostgreSQL and MySQL-driven PHP sites show that adding a simple static file cache (for

Re: [PHP] AFter the URL in PHP

2004-01-24 Thread Chris Shiflett
--- Randy Johnson [EMAIL PROTECTED] wrote: I am not sure if this is a php thing or not but hope is... It's more an Apache thing, but I think it's relevant. I see some sites like this: www.domain.com/tree where tree is not a directory for example www.domain.com/tree/ would not

Re: [PHP] Threading PHP

2004-01-24 Thread Chris Shiflett
--- Galen [EMAIL PROTECTED] wrote: This may be completely crazy, but let me tell you what I want to do: thread PHP. If you use PHP as an Apache module, you can use Apache 2, which has threading. Just make sure any extension you use is thread-safe. Chris = Chris Shiflett -

RE: [PHP] what PHP really needs

2004-01-24 Thread Chris Shiflett
--- Mark Charette [EMAIL PROTECTED] wrote: And only the smallest shops would consider having a web server and CF (or db) server on the same box. No scalability or easy recovery from failure. This is incorrect. The recommended Web architecture for ColdFusion is to have the Web server and the CF

Re: [PHP] what PHP really needs

2004-01-24 Thread Chris Shiflett
--- John W. Holmes [EMAIL PROTECTED] wrote: Marlon Moyer wrote: But I think the original question was about a tree that took a long time to create, and application variables would be a plus in this situation... Again, if you're just talking about reading, how hard is it to just do this

Re: [PHP] what PHP really needs

2004-01-24 Thread John Nichel
Chris Shiflett wrote: snip As for the ColdFusion versus PHP discussion, I'm not really interested. What about a Godzilla versus the Shrek dragon discussion? ;) -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] binary code, unreadable code etc

2004-01-24 Thread Ryan A
Hi, I have been following the thread Can we make .exe programs with php? for some time now and have been visiting the URLs and examples that are being recomended to do this. Some of the solutions are pretty good like BinaryPHP and BCompiler...and I personally use Turck MMCache on our sites. Am

Re: [PHP] binary code, unreadable code etc

2004-01-24 Thread John Nichel
Ryan A wrote: snip server to use the files..BCompiler seems good but is still too young, and I dont know or have a C++ compiler to use BinaryPHP gcc can be a C++ compiler. -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Form variables + sessions, is this how it is supposed to work?

2004-01-24 Thread Paul
OK thanks. I figured out my problem but I am not sure why this is. I am trying to impliment a back button to allow the user to go back and change form values. If I uses sessions and register $test then this does not work, it sticks does not change the value of $test if the user re-submits:

php-general Digest 25 Jan 2004 04:43:51 -0000 Issue 2550

2004-01-24 Thread php-general-digest-help
php-general Digest 25 Jan 2004 04:43:51 - Issue 2550 Topics (messages 175633 through 175669): Re: what PHP really needs 175633 by: Mark Charette 175638 by: Marlon Moyer 175639 by: John Nichel 175642 by: Mark Charette 175646 by: John W. Holmes

Re: [PHP] Form variables + sessions, is this how it is supposed to work? - Grammar corrected

2004-01-24 Thread Paul
I figured out my problem but I am not sure why this is. I am trying to implement a back button to allow the user to go back and change form values. If I use sessions and register $test then this does not work, the value of $test does not change if the user re-submits: input name=test

[PHP] Re: RewriteRule REGEX ?

2004-01-24 Thread Monty
Actually, it's not the reverse that I want to do. Right now the pages on my site use this form of URL: domain.com/articles.php?id=999 Now that I have upgraded my server to Apache 2, I'm going to use the ForceType and FollowSymLinks options to change the entire site to use this

Re: [PHP] Using templates (Code User Interface)

2004-01-24 Thread -{ Rene Brehmer }-
I wrote my own template system that works very well... I've got an outer control file that handles the user input, sets the variables for what the template should use of stylesheets and menus and such, and a variable for what body to use. All my body files are either PHP programs in themselves

[PHP] Re: Sample code

2004-01-24 Thread Paul
Thanks for any help. Even if I remove the specific default value for the text input, only the first posted value seems to be accepted and stays regardless of whether I change it :( test10.php --- ?php session_register(test);? body a href=test11.phpNEXT/a /body test11.php ---

Re: [PHP] porting perl scripts to php

2004-01-24 Thread David T-G
Al -- You have started a new thread by taking an existing message and replying to it while merely changing the Subject: line. That is bad, because it breaks threading. Whenever you reply to a message, your mail client generates a References: header that tells all recipients to which posting(s)