Diferior CMS on steroids
+19399 / 12716867 ( online 48 )

XmlHttpRequest


Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 12 - 21:37:54
Hi, is the XHR object work on Diferior ? Because I implement a form with 2 select lists with an AJAX method, if you dont know what ajax is, it means Asynchronous JAvascript Xml, for resume, it allow you to make some asynchronous request on your database for example, that suppose you can make your choice in a list A and immediatly the list B (which is linked) choices appears ... thats great but the XHR cannot send the data to the second page which make the database request ...

Thats the code : (between literal statements)

<?php include("./static/vod_list.php"); ?> <SCRIPT language="JavaScript"> var l1 = f.elements["list1"]; var l2 = f.elements["list2"]; var index = l1.selectedIndex; if(index < 1) l2.options.length = 0; else { var xhr_object = null; if(window.XMLHttpRequest) // Firefox xhr_object = new XMLHttpRequest(); else if(window.ActiveXObject) // Internet Explorer xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); else { // XMLHttpRequest non supporté par le navigateur alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); return; } xhr_object.open("POST", "./static/vod_list.php", true); xhr_object.onreadystatechange = function() { if(xhr_object.readyState == 4) eval(xhr_object.responseText); } xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); var data = "genre_vod="+escape(l1.options[index].value)+"&form="+f.name+"&select=list2"; xhr_object.send(data); // <--- This is the instruction suppose to send the data to vod_list.php }

And that the code of the second page (vod_list.php) (in the static directory) :

<?php // in this page smarty cant recognize $_POST["genre_vod"](and the other) because data are not send ... $query = "SELECT `com_vod` FROM `dif_vod` WHERE `genre_vod` = '".$_POST["genre_vod"]."'"; $query .= " ORDER BY `genre_vod`"; $result = @mysql_query($query); echo 'var o = null;'; echo 'var s = document.forms["'.$_POST["form"].'"].elements["'.$_POST["select"].'"];'; echo 's.options.length = 0;'; while($r = mysql_fetch_array($result)) echo 's.options[s.options.length] = new Option("'.$r["com_vod"].'");'; @mysql_close(); ?>

Any idea about why this doesnt work, I've developped the same code on a asp website in the past and that work fine, I think its unfortunatly due (again) to Smarty or something like that ...
Avatar
Blog posts: 12
Added downloads: 2
Comments: 18
Forum posts: 573
UnrealX (Lead code monkey) @ 09 03 12 - 22:25:24
It's already implemented, you can get XHR object by calling getHTTPObject function (check tpl_resources/skio/scripts/javascript.js).
Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 13 - 07:43:10
Even with the function that dont work, in addition your function make the same thing I do in my code anyway, so maybe the problem is away ?
Avatar
Blog posts: 12
Added downloads: 2
Comments: 18
Forum posts: 573
UnrealX (Lead code monkey) @ 09 03 13 - 15:47:47
This is not an issue with Diferior. You can't just drag and drop random code and expect it to work.

<?php and ?> tags won't be interpreted as PHP in Smarty (try {php}{/php}), you have to use full (static) URLs everythere (due to URL rewriting) and if that doesn't work, debug every component of your code individually, check browser's error console for any JS errors.
Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 13 - 23:15:08
Its not just a drag and drop, I've highly modify this code,plus, I know how smarty works, im not stupid at all, I know you under-estimate me because of my stupid errors everytime im coming back there, but I know what I do and if Im asking you its not for nothing, I just want to know why (even with smarty) all the normal proceed never works on Diferior (such as FCKEditor,Shoutbox,AJAX,and many more ...), I understand that template engine impose special marks, but its not just that, there is something else ...

I've tried yet all {php} / {/php} {literal} / {/literal} tricks, that dont work, with implemented functions, that dont work, why its so difficult ? .... >_< :wacko:

Well i think Diferior is not enough open for the developpers, you've got to do many tricks to see some result, I know you're alone to assure the support of Diferior, and its not an easy task especially with guys like me, but the almost part of my request are not solved ! :-(

Diferior need to be more active (with a staff ?), more updated or else it will be forgetted ... :\

Today, the web has a lot of new application (forum,ajax,xhtml,shoutbox,tracker,css 2,backend interface ...), why Diferior may not take advantage of that ? ^_^
Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 15 - 13:15:43
For now, I have got no more JS errors, but that still dont work, my problem is the SQL request seems to be executed because if I choose a 3 movies category for example, the second list is showed with 3 lines, with 5 movies category, it appear with 5 lines, BUT lines are empty ...

I've tried to send static argument and that work, its just with the SQL request result showing, in this case that dont want, maybe its the way I collect results from the SQL request :

$result = mysql_query($query); while ($row = mysql_fetch_array($result)) { echo 's.options[s.options.length] = new Option("'.$result['id_vod'].'","'.$result['com_vod'].'");'; }
Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 15 - 21:33:28 (edited 09 03 15 - 21:35:54)
Its done, the error come from the code :
For example : while($variable = mysql_fetch_array($blabla)) { echo $variable['abc']}

Curiously, Diferior dont like this, but with this code that work :

$result = mysql_query($query)or die('Erreur SQL !<br>'.$query.'<br>'.mysql_error()); for ($i=; $i<mysql_num_rows($result); ++$i){ echo 's.options[s.options.length] = new Option("'.mysql_result($result,$i, 3)).'","'.mysql_result($result,$i, ).'");'; }

Maybe mysql_fetch_array is not supported ...? o_O
Avatar
Blog posts: 12
Added downloads: 2
Comments: 18
Forum posts: 573
UnrealX (Lead code monkey) @ 09 03 16 - 17:34:51
It's a PHP function, Diferior has nothing to do with your code
Forum posts: 98
p2pmylife (Talks a lot) @ 09 03 16 - 19:12:57
I test the while loop in localhost and that work, there is a reason but what ? I dont really know ...

Well, the problem is resolved, if there are any while ($data=mysql_fetch_array($query)){} loop structure in the website, can you tell me where ?
Comments: 58
Forum posts: 378
ivy00135 (Immortal) @ 11 11 07 - 10:48:41
高雄酒店經紀酒店經紀高雄便服酒店高雄酒店高雄新富爺101酒店酒店經紀公司高雄酒店酒店上班台中酒店台北酒店經紀公司酒店經紀星座運勢2012星座配對2012牡羊座2012年星座運勢金牛座2012年星座運勢雙子座2012年星座運勢巨蟹座2012年星座運勢獅子座2012年星座運勢處女座2012年星座運勢天秤座2012年星座運勢天蠍座2012年星座運勢射手座2012年星座運勢魔羯座2012年星座運勢水瓶座2012年星座運勢雙魚座2012年星座運勢高雄酒店高雄酒店經紀高雄酒店經紀人高雄酒店經紀公司高雄酒店經紀人高雄酒店經紀傳播公司高雄酒店經紀公司高雄酒店經紀高雄酒店經紀高雄酒店經紀高雄酒店經紀高雄酒店經紀高雄酒店經紀高雄酒店經紀台南酒店經紀台南酒店經紀高雄酒店經紀高雄新富爺101酒店,便服酒店酒店經紀,制服酒店,酒店上班,高雄酒店經紀,高雄酒店,酒店經紀,酒店上班,高雄酒店經紀,高雄新富爺101酒店,高雄凱撒帝苑酒店,高雄威尼斯酒店,高雄香格里拉酒店,台北酒店,台中酒店,ktv酒店,高雄酒店經紀,傳播公司,高雄酒店經紀,經紀公司,高雄酒店經紀,便服酒店,高雄酒店經紀,台南酒店,台南酒店經紀,高雄酒店經紀高雄酒店經紀酒店工作知識庫酒店工作應該怎麼找?你確定要去酒店上班了嗎?酒店經紀人可以幫妳做什麼?酒店經紀人的出現有關酒店經紀人方面的問題做酒店是要找酒店經紀人?應徵酒店問答篇便服店跟制服店哪個比較適合我呢?酒店職務解說之「酒店小姐」酒店經紀小姐12個問答題酒店上班要先花很多治裝費?做酒店都要長的像明星?酒店上班注意事項酒店經紀跟酒店傳播?酒店職務解說~女少爺篇酒店上班、暑期打工為什麼要選擇來高雄?給想做酒店這行的男生酒店短期兼差工作?酒店工作要簽約?酒店小姐須知—製造感覺篇如何應付「澳洲來的客人」?身段要軟、手腕要好!十個妙招讓你不容易喝醉酒店應對技巧酒店的手腕?酒店上班注意事項酒店訪檯幹部訪檯幹部如何培訓?酒店上班寒假打工暑期打工在酒店上的不好?酒店工作需要什麼條件?龍亨酒店飯局小姐高雄酒店一覽台北酒店一覽龍亨酒店
Comments: 1
Forum posts: 307
qunqun (Immortal) @ 12 01 12 - 07:14:08
Lots of women like which usually amount normally include a coach outlet online ,it provides coziness to many girls that don't even think it is a great bushel of great interest directly to them.The reputation of the coach outlet with the good old bag, was actually the original inspiration came from a softball glove, Cheap replica Coach Handbags features soft.Welcome to order Discount louis vuitton uk and lead a fashionable, luxury and elegant life from our Louis Vuitton Canada Outlet Store. Enjoy the shopping now here!louis vuitton Store Online Handbags can also bring great accuracy as well as practical applicability and fashionable.to obtain coach outlet online in Hainan is amongst the brand new darling from residential holiday makers.As long as you open our coach factory outlet webpage, you will view various Coach New Arrivals which are the most popular also the most fashionable in this year.coach outlet has a zippered closure and buckles for extra security. Shiny brass hardware, rounded leather handle, and an interior pocket. It also includes a limited edition Hawaii luggage tag and lock.Coach Madison Handbags and Coach Poppy Bags are viewed among probably the most newsworthy among the particular coach outlet store online so far.At louis vuitton sale,you will find Louis Vuitton Vernis Wallet uses Vernis leather lining instead of classic Monogram canvas, meanwhile creates another classic style with fashion.If you buy bags and purses of the latest new designs from the louis vuitton outlet now, you can enjoy special discounts. What else are you waiting for?Coach handbags and purses at the coach factory outlet with new designs make them have the most outstanding and eye-catching advantage among other brands goods.coach factory online is one of the most popular and successful leather brands in the U.S. market.Coach stands for the most-admired innovative style and conventions in American fashion.coach factory outlet offer excellent, elegant coach products in order to generate room for your new collections.They're purchased more quickly that you may at any time imagine.My friends bought a lot of coach items from the coach factory outlet online, including handbags, shoulder bags, sling bags and so on.Cheap louis vuitton uk wholesale offers a variety of options to satisfy your needs. Some new ones even has fashionable styles fold over flap to disguise the snap closure and a draw string is added for a convenient closure.If you want to catch up to the latest vogue, having louis vuitton Handbags of the latest styles can absolutely satisfy you.Just visit LV outlet webpage and select the most suitable products for yourself.Becoming a regular member of coach outlet online, you can even buy wholesale purses, handbags, leather wallets at preferential prices. Why not have a try?coach outlet handbags You can not just save your cash but also your time inside a convenient way to obtain the exact same bags product and do not be concerned the shippment of one's products.coach outlet store have Coach handbags,Coach Shoulder Bags,Coach Briefcases and so on,these bags are so perfectly reproduced,you won't even be able to tell the difference!Here you can find the latest products in different kinds of coach outlet store online making best materials.They are leisure practical products in the new generations.If you need to acquire the focus, you need to sustain the coach bags, which with stylish components that will immediately concoct you appreciably more attracting and outstanding.Do not miss the opportunity to get the Coach Outlet Coupons.coach outlet store spends more efforts on building their own brand.The reputation of the coach outlet with the good old bag, was actually the original inspiration came from a softball glove, Cheap replica Coach Handbags features soft.Here you can find the latest products in different kinds of coach outlet store online making best materials.They are leisure practical products in the new generations.Swarovski Earrings is one of the most popular Earrings styles, hermes birkin offer many advantages. The selection of Swarovski offers everything you've come to expect in a pair of Earrings and more.Most perple reckon that owning hermes bags from Outlet Store shopping is actually buying of the most useful bags on the planet.Aimengcrystal.com specializes in providing gucci uk jewelry, natural crystal jewelry and 925 sterling silver jewelry for many years.This unique pair of rhodium-plated hoop gucci uk sale features a dangling 3D Hello Kitty. With a moving head, she sparkles in a gradation of pink and white tones. Why not combine this eye-catching and modern design with the matching bracelet?Offering quality LV products with favorable prices, louis vuitton outlet store is at your service. Hurry up, or you can not seize the chance.These louis vuitton bags are sophisticated bags thanks to its beautiful Monogram canvas, leather trimmings and shiny golden brass pieces.
Comments: 76
Forum posts: 3
suanye (Talks a lot) @ 12 03 31 - 04:45:00
What is the destiny? The nba shoes destiny is you entrusts with nba jerseys on sale others the enough respect, the destiny is you have the enough nba players shoes patience, the destiny to the thing is you takes on results in your responsibility tracy mcgrady shoes the complex compound. But my destiny splits, http://www.nbashoessalessss.com