Tagged Questions

54
votes
25answers
69k views

How can I compare two sets of 1000 numbers against each other?

I must check approximately 1000 numbers against 1000 other numbers. I loaded both and compared them server-side: foreach( $numbers1 as $n1 ) { foreach( $numbers2 as $n2 ) { if( $n1 == $n2 ) { ...
54
votes
14answers
39k views

Pass a PHP string to a Javascript variable (including escaping newlines)

What is the easiest way to encode a PHP string for output to a Javascript variable? I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a ...
32
votes
5answers
27k views

Is there an equivalent for var_dump (PHP) in Javascript?

We need to see what methods/fields an object has in Javascript.
29
votes
7answers
8k views

Multiple javascript/css files: best practices?

I have about 7 Javascript files now (thanks to various jQuery plugins) and 4-5 CSS files. I'm curious as to what's the best practice for dealing with these including where in the document they should ...
28
votes
5answers
6k views

How to properly handle session and access token with Facebook PHP SDK 3.0?

In the PHP 3.0 SDK there is no getSession() or any session handling from outside the Facebook api available. Some days ago the developers of facebook have also somehow updated the JavaScript sdk, ...
27
votes
13answers
2k views

Tell bots apart from human visitors for stats?

I am looking to roll my own simple web stats script. The only major obstacle on the road, as far as I can see, is telling human visitors apart from bots. I would like to have a solution for that ...
25
votes
12answers
548 views

looping in two directions

hey I'm looking for are clean solution to this problem: i start the loop with i = 0 in the second loop step the i = 1, then i = -1 and then i = 2 ect. how to programm this with a for loop in a ...
23
votes
5answers
365 views

What method would be best to build this complex graph

After 15 years doing UI development, there's very little I look at and think, "how on earth do I do that." This is one of those times. A graphic designer has sold my clients on a very complex ...
23
votes
5answers
28k views

json parse error with double quotes

A double quote even if escaped is throwing parse error. look at the code below //parse the json in javascript var testJson = '{"result": ["lunch", "\"Show\""] }'; var tags = JSON.parse(testJson); ...
23
votes
8answers
22k views

Javascript equivalent of PHP's in_array()

Is there anyway in Javascript to compare values from one array and see if it is in another array? Similar to PHP's in_array function?
22
votes
3answers
581 views

Javascript closures vs PHP closures, what's the difference?

What are the differences between closures in JS and closures in PHP? Do they pretty much work the same way? Are there any caveats to be aware of when writing closures in PHP?
22
votes
11answers
594 views

How do you keep debug code out of production?

It happens to the best of us. Particularly when dealing with languages without built in debugging capabilities such as breakpoints and watched variables, these bugs bite developers. Debugging ...
21
votes
3answers
911 views

Search and Replace Words in HTML

what I'm trying to do is make a 'jargon buster'. Basically I have some html and some glossary terms in a database. When the person clicks on jargon buster it replaces the words in the text with a nice ...
21
votes
9answers
43k views

Resize iframe height according to content height in it

I am opening my blog page in my website. The problem is I can give a width to an iframe but the height should be dynamic so that there is no scrollbar in the iframe, and it looks like a single page... ...
19
votes
6answers
842 views

Online Code Coloring Service

I would like to know if anyone knows of an online service where we paste the code and it generates back the colored html source code for that code. It could be PHP, HTML, CSS, Javascript, C, Java. ...
19
votes
5answers
2k views

Code reviews on the web for PHP and JavaScript code

What are the best places for freelancers or small companies to get code reviewed for PHP and JavaScript? Forums are an option, but are there any sites dedicated specifically to code reviews? Edit: ...
18
votes
24answers
13k views

Best PHP Framework w/ AJAX Support? [closed]

Question I'm fairly familiar with many of the PHP frameworks out there, but I'm wondering which ones actually integrate AJAX functionality and which ones do it well? Ideally I'd love to find a ...
17
votes
7answers
1k views

Update whole page on Ajax request

I have an AJAX request that can have two possible outcomes: The server responds with a message which I should place in a <div> The server responds with an HTML page, in this case I need to ...
16
votes
9answers
514 views

Game's score is based on a client-side countdown. How to bulletproof it?

I'm working on a game, which has score based on a JavaScript countdown: the faster you finish the level before the countdown reaches zero, the bigger your score is. How can I make sure it is not ...
16
votes
6answers
1k views

Adding unobtrusive progress bar to old-school file uploads

You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth ...
15
votes
2answers
399 views

Autocomplete for a single JavaScript object extended across multiple files in Zend Studio (Eclipse PDT)

My IDE is Zend Studio 8, which features a relatively basic perspective for JavaScript (similar to, if not the same as, the perspective in Eclipse PDT). In the application I'm working on, we extend a ...
15
votes
5answers
352 views

What is the safest way of passing arguments from server-side PHP to client-size JavaScript

In my application I rely heavily on JavaScript to enhance the user interface, but all of the data comes from a database and is processed by PHP. By default I use 'echo' statements to substitute the ...
15
votes
3answers
1k views

Packing, caching, JS and CSS in PHP that differentiate between development and production environment

I am trying to make development easy and have highly optimized output in production. The goals of what I am trying to do is: Make production pages fast! I would like that the Google Page Speed and ...
15
votes
10answers
360 views

How do I implement a test framework in a legacy project

So, I've got this big project written in PHP and Javascript. The problem is that it's become so big and unmaintainable that changing some little portion of the code will upset and probably break a ...
14
votes
4answers
1k views

Scaling a chat app - short polling vs. long polling (AJAX, PHP)

I run a website where users can chat with each other through the browser (think Facebook chat). What is the best way to handle the live interaction? (Right now I have a poll going every 30 seconds to ...
14
votes
10answers
1k views

PHP script: malicious JavaScript code at the end

The problem: On my webspace there are PHP files which all end with this: <?php include 'footer.php'; ?> Before this line, there is also HTML code in the files. The output in the browser ...
14
votes
6answers
565 views

keep HTMLformat after replace some text (using PHP and JS)

I would like modify HTML like I am <b>Sadi, novice</b> programmer. to I am <b>Sadi, learner</b> programmer. To do it I will search using a string "novice programmer". How ...
14
votes
8answers
893 views

What are unit tests and why should I care?

Okay, I develop web applications in PHP and JavaScript and a lot of times here on Stack Overflow I have seen the word unit test passing by, but nowhere on the website have I been able to found a ...
13
votes
7answers
300 views

How much time should I put into validating my HTML and CSS?

I'm making some pages using HTML, CSS, JavaScript and PHP. How much time should I be putting into validating my pages using W3C's tools? It seems everything I do works but provides more errors ...
13
votes
6answers
2k views

Cross browsers mult-lines text overflow with ellipsis appended within a width&height fixed div?

I made an image for this question, should be easier to understand. I've tried some jquery plugins out here and there, but cannot find the one i'm looking for. Any recommendation? ideas?
13
votes
5answers
4k views

Convert MySql DateTime stamp into JavaScript's Date format

Does anyone know how I can take a mysql datetime stamp, such as YYYY-MM-DD HH:MM:SS and either parse it or convert it to work in JavaScript's Date() function, such as.. Date('YYYY, MM, DD, HH, MM, ...
13
votes
6answers
2k views

Best Practice: Legitimate Cross-Site Scripting

While cross-site scripting is generally regarded as negative, I've run into several situations where it's necessary. I was recently working within the confines of a very limiting content management ...
12
votes
4answers
310 views

XSS - Which HTML Tags and Attributes can trigger Javascript Events?

I'm trying to code a secure and lightweight white-list based HTML purifier which will use DOMDocument. In order to avoid unnecessary complexity I am willing to make the following compromises: HTML ...
12
votes
3answers
383 views

ZendFramework integration with other frameworks

I want to make this question a guide for those interested in ZendFramework integration with other libraries/frameworks. Searching over StackOverflow doesn't give a broad view on the subject. The ...
12
votes
5answers
824 views

How to determine search query forwarding user to my website?

Greetings, I'm trying to work out what query is being used to forward people to my website. I'd appreciate it if anyone could tell me what api call I should be looking into. I'm sure this is ...
12
votes
11answers
1k views

What are good PHP and MySQL type Blogs to read? [closed]

I searched and found many topics similar to this on Stackoverflow, but they were all for languages that I do not use. I am interested in reading good blogs with an RSS feed in topics related to PHP, ...
12
votes
5answers
923 views

AJAXify site

I have legitimate reasons to do what I am trying to explain. I have an existing site say abc.com which has regular pages etc. everything written in php. Now I would like to AJAXify the site i.e. when ...
12
votes
5answers
14k views

Is it possible to preload page contents with ajax/jquery technique?

Is it possible to preload all page contents (like showing a loading bar / animated gif.. or loading text.. ) until the contents are fully loaded and then displayed to the user/visitor ? If this is ...
12
votes
6answers
3k views

Are there any Parsing Expression Grammar (PEG) libraries for Javascript or PHP?

I find myself drawn to the Parsing Expression Grammar formalism for describing domain specific languages, but so far the implementation code I've found has been written in languages like Java and ...
12
votes
4answers
6k views

Best Way to Organize an ExtJS Project

I've just started developing an ExtJS application that I plan to support with a very lightweight JSON PHP service. Other than that, it will be standalone. My question is, what is the best way to ...
11
votes
14answers
771 views

Optimizations to reduce website loading time

What are some important optimizations that can be made to a website to reduce the loading time?
11
votes
9answers
4k views

PHP json_encode encoding numbers as strings

I am having one problem with the PHP json_encode function. It encodes numbers as strings (e.g. array('id' => 3 becomes "{ ["id": "3", ...) When js encounters these values, it interprets them as ...
11
votes
3answers
28k views

ExtJS grab JSON result

I'm generating JSON response from PHP witch looks like this: { done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]} I want to grab these results using ...
11
votes
5answers
6k views

Track when user hits back button on the browser

Is it possible to detect when the user clicks on the browser's back button? I have an Ajax application and if I can detect when the user clicks on the back button I can display the appropriate data ...
10
votes
6answers
515 views

Alternative to Captcha?

I have a simple reg form (Name, Email, Password) on my website and im looking to implement some sort of anti-bot/spam protection, Captcha seems like a very long winded way, plus they really annoy me ...
10
votes
5answers
216 views

Meta programming into several output languages

I'm looking for a way to have to write and maintain a certain algorithm (a graphics rendering sub-module of my code, actually) only once. I need the algorithm in C++, PHP and Javascript. Theoretically ...
10
votes
5answers
2k views

Javascript/PHP Family Tree Builder with Multiple Parents

Is there an existing PHP, Javascript, or even command line tool that can build a family tree in HTML (preferably) or at the very least create an image for it? Multiple parents are a requirement. I ...
10
votes
9answers
3k views

How to implement a chat room using Jquery/PHP?

I'm looking to implement a chat room using PHP/Javascript (Jquery) with both group chat and private chat features. The problem is how to continually update the interface in a natural way and possibly ...
10
votes
2answers
492 views

Does HTTPS connection disabled jQuery?

I have the following php script which works flawlessly in normal circumstances (i.e. visiting the page directly): HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
10
votes
4answers
711 views

Writing a chat application

I'm wondering what's the right way to code a chat application for thousands of users. I'm just confused how will I be able to ping the server using AJAX every second or maybe less and check if there ...

1 2 3 4 5 230