
blirette
Members-
Posts
31 -
Joined
-
Last visited
Never
Profile Information
-
Gender
Not Telling
blirette's Achievements

Newbie (1/5)
0
Reputation
-
Thanks PFM. I had a similar function that had a bug in it. Yours works great! Here's the buggy code I had : // tableau temporaire pour trier les valeurs $aTableauTemporaire = array(); // boucler sur toutes les lignes de $aProduits foreach($aProduits as &$aProduit) { // $aTableauTemporaire[] = &$aProduit["intNbReservation"]; }; // trier par ordre descendant array_multisort($aTableauTemporaire, SORT_DESC, $aProduits); Thanks to HuggieBear too! ... but if I don't need globals, I'll prefer the other way shown above.
-
Is it possible to pass a value to the 'compare' function? Something like : uasort($products, 'compare("price")'); ...that would make the function reusable? Thanks!
-
Thanks man, used that too. Peace from Quebec City.
-
Thanks for the reply. I've tried this : RewriteEngine on RewriteRule /fr/forum(/?.*) /forum$1 [R=301,L] ... but it sends me back to the "This forum is disabled" message. I tried to enabled the forum back but it just send me to the old forum post (fr/forum), not in the new forum (/forum). I know the .htaccess works because I had this before and it was working : DirectoryIndex index.php
-
Hello Dolly! I've just update a PHPBB forum and moved it to a new location. I'd like all links directing to the old forum redirecting to the new one. Here's the change of URLs : www.website.com/fr/forum/viewtopic.php?t=1234 to www.website.com/forum/viewtopic.php?t=1234 so, I'd try this : RewriteEngine on RewriteRule ^/fr/forum/viewtopic.php([a-z/.]*)$ /forum/viewtopic.php$1 [R=301,L] ...but I'm not sure it'll work. Any help please? Thanks for your time.
-
Hi, I'm trying to setup an intranet to manage file in the entreprise. But I have a question regarding the upload via PHP. Some files are going to be a couple of megabits in size. Since I can connect to the server locally, is there a way to prevent the files from going out of the local network only to comeback from the Internet... as in using the local upload speed instead of the Internet slow upload speed? Hope it's clear, sorry I don't write english really well. Thanks for your time.
-
I'll check that right now. Thanks!
-
Well it's not that hard. Start with only one file upload then separate your functions so you can loop on all the files. Be sure to catch any errors and it should be ok. Start small and robust, and then, build up!
-
Hey, I've always used ISO8859 to code my PHP apps but I want to move to UTF8 now. I've converted my home-made CMS to manage everything in UTF8. Great. But now I have to use some results from .csv files and informations coming from an LDAP service which are encoded in ISO8859. Can anyone point me to a resource on how to work with different encodings? I'd hate to have to use ISO8859 again now that I finally made the switch. Thanks a lot, have a nice day.
-
I love to solve things by myself! I had to eval() it. var JSONFile = xmlhttp.responseText; eval(JSONFile);
-
Hi all, I'm pretty new to using this JSON thing and would like to know why this isn't working. I'm trying to get via AJAX some infos that I'd like to be formatted in JSON so I can parse them easily. A PHP page is generating this string : {"lastName":"Hope","firstName":"Bob","email":"[email protected]"} I'm trying to retrieve it from another PHP page via this : var aInfos = xmlhttp.responseText; alert(aInfos.firstName); alert(aInfos.lastName); alert(aInfos.email); But it doesn't seems to work. It says "undefined". When I replace "xmlhttp.responseText" with "{"lastName":"Hope","firstName":"Bob","email":"[email protected]"}", it works. What am I missing? Thanks for your time and have a nice day!
-
Finally found it : $sr = ldap_search($ds, "ou=idul,ou=comptes,dc=ulaval,dc=ca", "cn=belir") or die('search error'); If it can help someone...
-
Hey guys, I've been working with PHP/MySQL for a long time but never had a chance of trying to use it in conjonction with LDAP. So, here I am. I've tried to found the basics of it on the Net but now I seem so close to solving it, I thought maybe someone here could figure out it in secs. I'm trying to retrieve informations with LDAP. The problem is I have no clue how to tell which info I want. Here's the code I have atm : // Connecting $ds=ldap_connect("ldaps://uldc1.ulaval.ca"); // must be a valid LDAP server! // Checkingif the connection worked if ($ds) { // Binding $r = ldap_bind($ds, "[email protected]", "password"); // Search entry $sr = ldap_search($ds, "dc=ulaval,dc=ca,ou=comptes,ou=idul", "cn=_MAC01"); // Show the number of entries echo "Number of entires returned is ".ldap_count_entries($r, $sr)."<br />"; // Getting entries $info = ldap_get_entries($ds, $sr); // Show data echo "Data for ".$info["count"]." items returned:<br />"; for ($i=0; $i<$info["count"]; $i++) { echo "dn is: " . $info[$i]["dn"] . "<br />"; echo "first cn entry is: " . $info[$i]["cn"][0] . "<br />"; echo "first email entry is: " . $info[$i]["mail"][0] . "<br /><hr />"; } // Close the connection ldap_close($ds); } else { echo "<h4>Unable to connect to LDAP server</h4>"; } I'd like to get the info "logonCount" as shown in the screenshot. Thanks for the tip! [attachment deleted by admin]
-
ok...? And do you know such tool that has already been developped?
-
Exploding should be the way. Explode the search string and construct with a 'for' or 'foreach' a serie of 'fieldName LIKE '%word1%' AND ...'. Well, you get the idea... Good luck!