Tagged Questions

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, ...
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, ...
8
votes
3answers
64 views

Optimising Database Structure

I'm developing a reward system for our VLE which uses three separate technologies - JavaScript for most of the client-side/display processing, PHP to communicate with the database and MySQL for the ...
8
votes
3answers
180 views

Guides for dealing with Unicode in PHP5?

Hey everybody. I'm developing a new site (php5/mySQL) and am looking to finally get on the Unicode bandwagon. I'll admit to knowing next to absolutely nothing about supporting Unicode at the moment, ...
7
votes
10answers
678 views

Ajax “Is there new content? If so, update page” - How to do this without breaking the server?

It's a simple case of a javascript that continuously asks "are there yet?" Like a four year old on a car drive.. But, much like parents, if you do this too often or, with too many kids at once, the ...
6
votes
2answers
298 views

Google Maps API v3: How to Set Zoom Level And Map Center To User Submitted Location?

I have used this tutorial from Google to build a web app that finds the closest store from the user entered location: http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html I have my app ...
6
votes
7answers
166 views

Is there a security risk in exposing MySQL tables names in javascript?

I have an ajax method that esentially works like this function getRow(tableName, idName, idValue, callback) The obvious benefit of this is that I have one function that can retrieve data from any ...
6
votes
5answers
323 views

Website. VoteUp or VoteDown Videos. How to restrict users voting multiple times?

Im working on a website (html,css,javascript, ajax, php,mysql), and I want to restrict the number of times a particular user votes for a particular video. Its similar to the YouTube system where you ...
6
votes
13answers
920 views

Fast Loading web pages

We are planning to develop a new website. Our goal is to load web pages quickly. What are all the techniques we need to follow. Can anyone give me good suggestions, forums links or articles. Our ...
5
votes
4answers
174 views

Upload large CSV file approx 10,000,000 records in mysql table also it contain duplicate rows

I want to upload a large csv file approx 10,000,000 records in mysql table which also contain same or more no. of records and also some duplicate records. I tried Local data infile but it is also ...
5
votes
5answers
230 views

Anchor tags list creation

I am creating a list of anchor tags from a MySQL/PHP query; the anchor tags call a JavaScript function. The 'catch 22' that I have is: href="#" makes the page jump to the top every time one of the ...
5
votes
2answers
891 views

Convert JS date time to MySQL datetime

Does anyone know how to convert JS dateTime to MySQL datetime? Also is there a way to add a specific number of minutes to JS datetime and then pass it to MySQL datetime?
5
votes
7answers
141 views

Do I need to check for sql injection even on validated inputs?

This is about a classifieds website... I use PHP and MySql to insert records into a db. I have a HTML form, and users must fill in this form to proceed. Below is the form inputs and the validation ...
5
votes
2answers
100 views

What is considered a “best practice” for the design of a set of PHP scripts which service AJAX requests?

I am designing a website which will query a simple MySQL database using AJAX calls to PHP scripts. I have looked into frameworks which achieve this but I'm looking for a lighter weight solution and ...
5
votes
5answers
234 views

How to make a controlled “shuffle” order?

I have a set of quiz game questions in a sql database (javascript and sqlite actually). The questions all have a difficulty level from 1 to 5, 5 being hardest. Here is a simplified visualization of ...
5
votes
7answers
964 views

How to display time countdown using PHP and MySQL

How do I get a time countdown using PHP? I want to display something like 3Days 4Hours. I have a date field coming from MySQL table and want to calculate it with today's date. As of now I have only ...
5
votes
3answers
746 views

How can I prevent a double submit with jQuery or Javascript?

I keep getting duplicate entries in my database because of impatient users clicking the submit button multiple times. I googled and googled and found a few scripts, but none of them seem to be ...
5
votes
1answer
197 views

jQuery, PHP: Calling a PHP script from jQuery, but it doesn't appear to be executing

I'm using the source code found on this site here: http://webtint.net/tutorials/5-star-rating-system-in-php-mysql-and-jquery/comment-page-1/#comment-2562 A fantastic resource, I think you'll all ...
5
votes
7answers
1k views

What is the correct/safest way to escape input in a forum?

I am creating a forum software using php and mysql backend, and want to know what is the most secure way to escape user input for forum posts. I know about htmlentities() and strip_tags() and ...
5
votes
8answers
894 views

Whats the easiest way to determine is a user in online? (PHP/MYSQL)

Is there a way I can piggy back sessions to know is the user is online? I.e: use logs on, I set a $_SESSION variable, user times out- cookie Garbage collector updates the database to update their ...
5
votes
9answers
610 views

Javascript and MySQL

I want to build an entire web app using only Javascript and MYSQL . Anyone know how I can go about this if it's possible. Thank you. p
5
votes
7answers
2k views

Are there JavaScript bindings for MySQL?

I want to access a MySQL database directly from JavaScript code in an HTML page in Firefox. Does such a library exist? To be very clear, CGI+Ajax will not work Some background: I want to create ...
4
votes
2answers
75 views

Get the URL from button which clicked

I am new to Jquery. I have a doubt: For example, in a web page as voting, if you click a button, a counter is incremented by +1. Now, how to draw the url of the button on a website? Therefore, if we ...
4
votes
2answers
312 views

Connecting directly to Redis with (client side) javascript?

Is there a way to directly connect to Redis using client side (not Node.js) javascript? I'm already using Node.js + PHP + Redis + Socket.io (for the client) successfully for a few projects. However, ...
4
votes
1answer
446 views

JQuery is not working because Mootools is already loaded in joomla

I tried to include the JQuery lib into joomla but it's not working. Many comps and modules use mootools inside my CMS. I think the problem is a conflict between the two frameworks. I have searched ...
4
votes
1answer
88 views

Autocomplete in jQuery just…stopped working?

I had jQuery autocomplete working perfectly with CodeIngiter when inexplicably it just stopped functioning completely. When I visit the controller for the autocomplete I still see the correct array - ...
4
votes
1answer
784 views

Use parameter in function passed to google.setOnLoadCallback();

I'm trying to use Google Visualization API to display data gathered from a MySQL server. I want to get the data using PHP and then pass it into the javascript function call to create a chart. When I ...
4
votes
2answers
372 views

best way to escape data JS->PHP->MySQL and vice versa

what functions i have to use to encode/decode/escape/stripslash data for following purposes? when calling a PHP script from JS like: page.php?data=don't_use_#_and_%_in_URL_params when a PHP script ...
4
votes
3answers
2k views

php / mysql / javascript mindate and maxdate

In .net, there are the static properties DateTime.MinDate, and DateTime.MaxDate that conveniently return the minimum and maximum valid dates for a DateTime object. I'm dabbling in web programming ...
4
votes
4answers
1k views

How to grab dynamic content on website and save it?

For example I need to grab from http://gmail.com/ the number of free storage: Over <span id=quota>2757.272164</span> megabytes (and counting) of free storage. And then store those ...
4
votes
2answers
145 views

parsing text for contents of database table of limited size

I have a MySQL table of "people" as part of a web site, for example: | people_id | firstname | lastname | ----------------------------------------- | 1 | John | Lennon | | 2 ...
4
votes
4answers
312 views

What is the best way to go about creating a page of stickies with savable and retrievable content?

I have had a look at sticky notes with php and jquery and jStickyNote, and while both seem to look pretty nifty they lack some elements I am after. I haven't been able to find a way to allow ...
3
votes
1answer
84 views

Formatting text from database

I have a textarea on my page where i allow users to write text. To preserve linebreaks that users make while inputting I use: editBox.val().replace(/\r?\n/g, "\r\n"); Before the data is uploaded to ...
3
votes
2answers
79 views

how to get result from mysql and display using jquery when radio button is clicked?

I would like to make a bus seating plan. I have seating plan chart using javascript function.I have two radio button named Bus_1 and Bus_2 queried from databases. When I clicked one of radio button, I ...
3
votes
1answer
34 views

Web Application: Preprocess and send all items in one page load, or separate the items into separate client requests?

I have been tasked with supervising the rewrite/modernization of our firm's ancient (1990s!) PHP application. Of course, I approach this task with both excitement and trepidation. I have spent weeks ...
3
votes
1answer
54 views

Javascript timer not looping along with mysql_fetch_array results

<? while($row = mysql_fetch_array($result)) { $result2 = $row['end_time']; echo"<td><div id=defaultCountdown></div></td>"; ?> <script type=text/javascript> ...
3
votes
3answers
177 views

Online Hotel Booking System, Simultaneous Booking?

I'm asked to create an online booking system with online payment and I'm wondering what to do in the case when 2 customers booked for the same room(s) at the same time. For Example: At the same time: ...
3
votes
1answer
102 views

Populating a drop down list with a combination of PHP and Javascript

I have the following view: <form action=<?=$target;?> method="post" name="editForm"> <div id="page1"> <select id="categories" name="category" ...
3
votes
2answers
61 views

Website image management via JavaScript - what's a good way to handle this?

I'm making an administration page for a website. Currently, it allows a user to see a set of "products" which they can delete, edit, or add to (create new). Addition and editing both work by ...
3
votes
3answers
91 views

What is the most efficient way to log user action and page viewes?

I've created a website where users will be able to add entries, associate rows in different tables and so on. I need to track what actions users are doing for a score table. I also need to keep track ...
3
votes
4answers
66 views

Why does Latté = Latté?

I have a webform and an input if you put in Latté and POST it using JSON... $.ajax({ type: "POST", url: "http://"+document.domain+"/includes/rpc.php", data: {method:"add_item",item:item}, ...
3
votes
3answers
32 views

jquery class, opens both of same

Okay so we have a mySQL while loop echoing out divs for a certain result. Here is our code: <div class="post"> <p>hello World</p> <div class="contentSlide"> ...
3
votes
0answers
140 views

Is there any site like jsfiddle and jsbin for to ask PHP, MySQL database questions like we have XAMPP/Wamp on computers? [closed]

Is there any site like jsfiddle and jsbin for to ask PHP, MySQL question? For example I have a php javascript code which is writing something in database table. and I've question related to that. I ...
3
votes
2answers
81 views

How can I simulate a peer-to-peer communications channel using PHP, MySQL DB and JavaScript?

The challenge I'm facing is simulating a communication channel between two users of a website (e.g. gaming site), by using solely the technologies mentioned in the title. Recently I've developed an ...
3
votes
3answers
146 views

How PHP MVC should look like with jQuery/javascript code?

Well, I've read this tutorial if I could say: http://www.symfony-project.org/book/1_1/02-Exploring-Symfony-s-Code And, actually, I write my code very similiary. But my question, where should I insert ...
3
votes
2answers
59 views

How best do I implement mysql data into a line of javascript code?

I am modifying some javascript for Google maps so that the different pin information is retrieved from my database. If I was to do this with just php it would be like this: <?php while($row = ...
3
votes
7answers
119 views

PHP/HTML/Javascript: Automatically leave page?

I've written a some PHP that interacts with a SQL database and is just around as an intermediate between two pages. I want a user to automatically be forced to leave that page and move to another (or ...
3
votes
3answers
150 views

Broken CSV, how can I fix it?

I'm trying to parse a CSV. I'd like to get it into a DB or just parse it with JavaScript, but either way fails due to the broken syntax. My entire CSV file is here: https://gist.github.com/1023560 If ...
3
votes
5answers
266 views

Can I depend on the behavior of charCodeAt() and fromCharCode() to remain the same?

I have written a personal web app that uses charCodeAt() to convert text that is input by the user into the relevant character codes (for example ⊇ is converted to 8839 for storage), which is then ...
3
votes
2answers
111 views

is there a better way to code a quotation form?

i am seeking advise and probably example code, links that will help me improve my quotation form. the current scenario is like that:- dynamic (select combo) rows are generated for items(from mysql ...

1 2 3 4 5 22