[PHP] Quick Q.

2013-07-24 Thread Richard Quadling
PHP 5.5+ is (from news) - Windows XP and 2003 support dropped. Does that mean no longer executes (as is seemingly what I'm seeing) or just no longer supported/developed? Just going to look into getting to the bottom of the CHM build issues and only have an XP license of Windows. Will drop

Re: [PHP] Quick Q.

2013-07-24 Thread Matijn Woudt
On Wed, Jul 24, 2013 at 10:45 PM, Richard Quadling rquadl...@gmail.comwrote: PHP 5.5+ is (from news) - Windows XP and 2003 support dropped. Does that mean no longer executes (as is seemingly what I'm seeing) or just no longer supported/developed? Just going to look into getting to the

Re: [PHP] Quick Q.

2013-07-24 Thread Richard Quadling
On 24 July 2013 21:54, Matijn Woudt tijn...@gmail.com wrote: On Wed, Jul 24, 2013 at 10:45 PM, Richard Quadling rquadl...@gmail.comwrote: PHP 5.5+ is (from news) - Windows XP and 2003 support dropped. Does that mean no longer executes (as is seemingly what I'm seeing) or just no

Re: [PHP] Quick Q.

2013-07-24 Thread Matijn Woudt
On Wed, Jul 24, 2013 at 10:59 PM, Richard Quadling rquadl...@gmail.comwrote: On 24 July 2013 21:54, Matijn Woudt tijn...@gmail.com wrote: On Wed, Jul 24, 2013 at 10:45 PM, Richard Quadling rquadl...@gmail.comwrote: PHP 5.5+ is (from news) - Windows XP and 2003 support dropped.

Re: [PHP] Quick q, most prolly 0T

2005-06-03 Thread Rory Browne
On 6/2/05, Ryan A [EMAIL PROTECTED] wrote: Hi Chris, Thanks for replying I noticed a site that is using php, but he is has shortened the url so that the filename was not shown.. eg: somesite.com/?a=1 How did they do that? It's called a directory index. Examples include

Re: [PHP] Quick q, most prolly 0T

2005-06-03 Thread Richard Lynch
On Wed, June 1, 2005 8:42 pm, Ryan A said: On 6/2/2005 5:17:47 AM, Richard Lynch ([EMAIL PROTECTED]) wrote: URL re-writing can do that -- It ends up using his 'index' file (or whatever) but you don't see it in the URL. Thanks for replying. But if I want to copy his exact way of doing

Re: [PHP] Quick q, most prolly 0T

2005-06-02 Thread Jochem Maas
Ryan A wrote: Hey, On 6/2/2005 5:17:47 AM, Richard Lynch ([EMAIL PROTECTED]) wrote: URL re-writing can do that -- It ends up using his 'index' file (or whatever) but you don't see it in the URL. Thanks for replying. But if I want to copy his exact way of doing things...instead of index

Re: [PHP] Quick q, most prolly 0T

2005-06-02 Thread Ryan A
Hi Chris, Thanks for replying I noticed a site that is using php, but he is has shortened the url so that the filename was not shown.. eg: somesite.com/?a=1 How did they do that? It's called a directory index. Examples include index.html and index.php. You configure this with the

Re: [PHP] Quick q, most prolly 0T

2005-06-02 Thread Chris Shiflett
Ryan A wrote: Basically I am waiting for the client to pay me...till he does, I am displaying the index page which is a under construction page...but he also wants to play with the site so I need to direct all calls to main.php... You want to only show an under construction page, but you also

[PHP] Quick q, most prolly 0T

2005-06-01 Thread Ryan A
Hey, I noticed a site that is using php, but he is has shortened the url so that the filename was not shown.. eg: somesite.com/?a=1 How did they do that? if it was url rewriting it would be somesite.com/1/ so what is he using? Thanks, Ryan -- No virus found in this outgoing message. Checked

Re: [PHP] Quick q, most prolly 0T

2005-06-01 Thread Richard Lynch
URL re-writing can do that -- It ends up using his 'index' file (or whatever) but you don't see it in the URL. On Wed, June 1, 2005 7:25 pm, Ryan A said: Hey, I noticed a site that is using php, but he is has shortened the url so that the filename was not shown.. eg: somesite.com/?a=1

Re: [PHP] Quick q, most prolly 0T

2005-06-01 Thread Sebastian
you can do that with just an index.php file. say you have a directory called 'foo' with an index.php you can do something like this: if($_GET['a'] == 1) { echo 'blah'; } mysite.com/foo/index.php?a=1 would be the same as: mysite.com/foo/?a=1 Ryan A wrote: Hey, I noticed a site that is

Re: [PHP] Quick q, most prolly 0T

2005-06-01 Thread Ryan A
Hey, On 6/2/2005 5:17:47 AM, Richard Lynch ([EMAIL PROTECTED]) wrote: URL re-writing can do that -- It ends up using his 'index' file (or whatever) but you don't see it in the URL. Thanks for replying. But if I want to copy his exact way of doing things...instead of index file I would like to

Re: [PHP] Quick q, most prolly 0T

2005-06-01 Thread Chris Shiflett
Ryan A wrote: I noticed a site that is using php, but he is has shortened the url so that the filename was not shown.. eg: somesite.com/?a=1 How did they do that? It's called a directory index. Examples include index.html and index.php. You configure this with the DirectoryIndex directive in