212
I Use This!
Very Low Activity

News

Analyzed about 2 hours ago. based on code collected about 2 hours ago.
Posted almost 14 years ago by Brett Zamir
It will read any file as long as it is placed on the same domain.
Posted almost 14 years ago by jorge
it don't read aspx files
Posted almost 14 years ago by Josep Sanz
I'm using base64_decode to decode a binary PDF. I detect that the call to utf8_decode used at last of the function is causing problems when work directly with binary data. What is the reason of use this utf8_decode??? I understand that play with ... [More] base64_encode and base64_decode, must be as ping-pong and be independent of the contenst (UTF8 is assumed???) The ping-pong refers to do for example base64_decode(base64_encode(BINARY_PDF_CONTENTS)) must return directly the BINARY_PDF_CONTENTS. Thanks. Josep. [Less]
Posted almost 14 years ago by Gotibandhu
Hello Everyone, We can use Date () object to manipulate dates in java script. Whenever we want to access current date of the system or want to set new date in java script then we can use appropriate java script method of date function. In this ... [More] demonstration we learn how to work with function of date object......... For more details check this link..... http://mindstick.com/Articles/c18de1aa-fd9c-433a-80ea-93c14522c856/?Implementing%20Date%20object%20in%20Java%20Script Thanks !!!! [Less]
Posted almost 14 years ago by Gotibandhu
Hi, please check out this link....... http://mindstick.com/Articles/0864994b-563d-4180-87bd-b6e3bea77c26/?Function%20in%20Java%20Script Thanks !!!
Posted almost 14 years ago by Gotibandhu
Hi, function start() { document.write("This is start function which is called when the document is loaded in browser.<br />"); document.write("This is non parametrize function.<br />"); ... [More] document.write("I am going to call a parametrize function which return addition of two number.<br />"); var num1 = 45, num2 = 66; var res = getAddition(num1, num2); document.write("Addition of two number is : " + res + " <br />"); } For more details please check out the following link ............. Thanks a lot!!!!! [Less]
Posted almost 14 years ago by MemtechLodhi
Hello Everyone, Please check out this link ...http://mindstick.com/Articles/74a106c6-47ae-4b02-9f77-2fab0de00061/?Entering%20current%20date%20in%20existing%20html%20control%20by%20using%20java%20script for more details on getdate() function in javascript Thanks !!!!
Posted almost 14 years ago by Komal
Thanks a lot @Rafał I update the function htmlentities() from github and it works fine... :)
Posted almost 14 years ago by Rafał
@Paul: I changed the function, so it returns Array when preserve_keys is falsy. https://github.com/kvz/phpjs/blob/master/functions/array/array_reverse.js I think it was the first and last time I've touched array functions.
Posted almost 14 years ago by Paul
When you pass a flat array (no direct keys) of just strings, and even set preserve_keys to false, you of course keep getting an object returned, and not an array as tmp_arr = {} and not tmp_arr = [] So in the case of there being no supplied ... [More] keys in the array this does not seem to work. a = ["a", "b", "c"]; b = PhpJs.array_reverse(a); display b and you get [object Object] under QtScript at least. Change to tmp_arr = [] ... and you get the expected c, b, a Does the function need to test on preserve_keys first as to what temp_arr is created as? [Less]