Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
6 line php 2 asp
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Pettt[CZ]  
View profile  
 More options Feb 8, 4:40 pm
Newsgroups: comp.lang.php
From: "Pettt[CZ]" <simun...@hotmail.com>
Date: Wed, 8 Feb 2012 13:40:42 -0800 (PST)
Local: Wed, Feb 8 2012 4:40 pm
Subject: 6 line php 2 asp
Guys, this is your humble ASP colleague asking for help.
I have no experience with PHP and I need this 6 line page translated
to ASP

$location   = 'albums';
$album_name = $_GET['album_name'];
$files      = glob($location . '/' . $album_name . '/*.{jpg,gif,png}',
GLOB_BRACE);
$encoded    = json_encode($files);
echo $encoded;
unset($encoded);

it comes from here:
http://tympanus.net/codrops/2010/06/27/beautiful-photo-stack-gallery-...
but I honestly would not know where to start

No cross-subject violation meant, just shopping where the knowledge
is...
Sorry, and thanx again

Petr


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jerry Stuckle  
View profile  
 More options Feb 8, 5:02 pm
Newsgroups: comp.lang.php
From: Jerry Stuckle <jstuck...@attglobal.net>
Date: Wed, 08 Feb 2012 17:02:37 -0500
Local: Wed, Feb 8 2012 5:02 pm
Subject: Re: 6 line php 2 asp
On 2/8/2012 4:40 PM, Pettt[CZ] wrote:

You'll do better asking in an asp newsgroup, since that's your target.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Denis McMahon  
View profile  
 More options Feb 8, 10:06 pm
Newsgroups: comp.lang.php
From: Denis McMahon <denismfmcma...@gmail.com>
Date: 09 Feb 2012 03:06:54 GMT
Local: Wed, Feb 8 2012 10:06 pm
Subject: Re: 6 line php 2 asp

On Wed, 08 Feb 2012 13:40:42 -0800, Pettt[CZ] wrote:
> Guys, this is your humble ASP colleague asking for help. I have no
> experience with PHP and I need this 6 line page translated to ASP

> $location   = 'albums';
> $album_name = $_GET['album_name'];
> $files      = glob($location . '/' . $album_name . '/*.{jpg,gif,png}',
> GLOB_BRACE);
> $encoded    = json_encode($files);
> echo $encoded;
> unset($encoded);

> it comes from here:
> http://tympanus.net/codrops/2010/06/27/beautiful-photo-stack-gallery-

with-jquery-and-css3/

> but I honestly would not know where to start

> No cross-subject violation meant, just shopping where the knowledge
> is...
> Sorry, and thanx again

See Jerry's comments - I can try and explain what I think the code does,
but (a) I might be wrong and (b) I know nada about ASP.

It seems to be generating a json encoded list of pathnames of all files
matching 3 popular image types in a subdirectory of "albums" that was
passed as a parameter in a get request.

The following pages should help you work your way through understanding
the php:

1) $_GET[] http://uk.php.net/manual/en/reserved.variables.get.php
2) glob() http://uk.php.net/manual/en/function.glob.php
3) string concatenation http://uk.php.net/manual/en/
language.operators.string.php
4) json_encode() http://uk.php.net/manual/en/function.json-encode.php
5) echo http://uk.php.net/manual/en/function.echo.php
6) unset http://uk.php.net/manual/en/function.unset.php

Basically, the file expects a get request that looks something like:

http://server/path/page?album_name=dirname

then given files in: "albums/dirname" with the names:

file1.gif
file2.gif
file3.jpg
file4.png
file5.png
file6.jpg

I believe that the response will look something like:

{0:"albums/dirname/file1.gif",1:"albums/dirname/file2.gif",2:"albums/
dirname/file3.jpg",3:"albums/dirname/file4.png",4:"albums/dirname/
file5.png",5:"albums/dirname/file6.jpg"}

But that's the best I can offer you.

This might give you enough of an understanding to write the equivalent
ASP code, or it might not.

Rgds

Denis McMahon


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Álvaro G. Vicario  
View profile  
 More options Feb 9, 12:11 pm
Newsgroups: comp.lang.php
From: "Álvaro G. Vicario" <alvaro.NOSPAMTH...@demogracia.com.invalid>
Date: Thu, 09 Feb 2012 18:11:51 +0100
Local: Thurs, Feb 9 2012 12:11 pm
Subject: Re: 6 line php 2 asp
El 08/02/2012 22:40, Pettt[CZ] escribió/wrote:

> Guys, this is your humble ASP colleague asking for help.
> I have no experience with PHP and I need this 6 line page translated
> to ASP

> $location   = 'albums';
> $album_name = $_GET['album_name'];
> $files      = glob($location . '/' . $album_name . '/*.{jpg,gif,png}',
> GLOB_BRACE);
> $encoded    = json_encode($files);
> echo $encoded;
> unset($encoded);

If I recall correctly, ASP was already abandoned when JSON was invented
so you'll have to write your own JSON routines.

--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://borrame.com
-- Mi web de humor satinado: http://www.demogracia.com
--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Captain Paralytic  
View profile  
 More options Feb 10, 5:20 am
Newsgroups: comp.lang.php
From: Captain Paralytic <paul_laut...@yahoo.com>
Date: Fri, 10 Feb 2012 02:20:05 -0800 (PST)
Local: Fri, Feb 10 2012 5:20 am
Subject: Re: 6 line php 2 asp
On Feb 9, 5:11 pm, "Álvaro G. Vicario"

There are a couple of libraries listed on http://www.json.org/ for it.
I can't recall which one of them I used when I last did an asp project
but whichever one it was, worked well (and is still working).

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »