PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → Index on Php Looper
Index on Php Looper
Débuté par Sandro Abramo, 27 aoû. 2009 13:18 - 1 réponse
Posté le 27 août 2009 - 13:18
Hello,
I have tried to use a looper in PHP. It works but when I try to retrieve the link selected by user in the looper I have all the ATT_* attribute empty. I have already tried to use the PAGE_Looper.wwh (transformed in PHP page) but it is the same. Clicking on the link, I got blank info.
The question is.. how can I identify the image clicked by user if the image is in the looper ? all the site is in php.

thank you in advance
Sandro
Posté le 28 août 2009 - 22:03
What i use to do is save the Index of the looper in a hidden EDT, and executing a hidden Button...

In the Click event of the Browser code of the Image:

// Assign the Current Looper Index
EDT_LooperIndex = LOOP_Looper

// Execute the Button
ExecuteProcess(BTN_ImageClick, trtClick)



Now, on the Server code of the BTN_ImageClick (the button is Hidden):

[code]
// Here i can get the Attributes....
Trace(ATT_Attribute1[EDT_LooperIndex])
[code]

It's a little "cheat", but it works for me.