0
votes
2answers
33 views
Creating 5 Star Rating System With PHP , MySQL ,Jquery And Ajax
I've downloaded this tutorial http://megarush.net/5-star-rating-system-with-php-mysql-jquery-and-ajax/ but I'm getting these errors:
Notice: Undefined variable: rat in ...
1
vote
1answer
34 views
Whenever I'm using $_GET to get a specific row in my DB jquery/JS does nothing
I'm trying to create an app with jquery/php/mysql. It's supposed to first list all stores in the database, and that works fine. But when you click on one you should get more information on that ...
0
votes
1answer
31 views
MySQL - ListMenus/Comboboxes
I am trying to build a dynamic set of comboboxes/listMenus getting data from a MySQL DB. My database has 5 fields, 1st being id and
topic, sub_topic, info and url
I want to make it so that until ...
0
votes
1answer
36 views
error messages not getting correct values from php
So i am trying to display a message but instead it displays the whole page's code. However this only happens when i am registering it does work for logging in. Sorry for the long code, i wanted to ...
0
votes
1answer
34 views
Ruby on rails get mysql information depending on option value
I am wondering how I should go about retrieving information from a mysql database associated with my ruby on rails app. When a user selects a product from the select box, I want to use the value of ...
-1
votes
2answers
31 views
php/mysql/jquery (broken with simple jquery code)
I have been trying to create an SPA that signs up a user, stores the user in the database, and then displays the user info in a div. I am using PHP/MYSQL and jQuery. Here is a walk through for the ...
0
votes
1answer
22 views
Using Bootstrap's Typeahead to populate a form with values from a MySQL database
Is there a way to achieve this with Bootstrap's Typeahead and MySQL?
MY FORM (name, adress, city)
<label>Naam:</label>
<input type="text" name="naam" ...
-2
votes
1answer
33 views
Unsuccesfully trying to update mysql table with jQuery and php [closed]
Im using a jQuery script togheter with PHP And MySQL to autosave textarea input.
i Also use jquery.autosave.js
The script works fine with one (1) textarea, but i want to be able to edit multiple ...
-6
votes
0answers
30 views
How to create a Referral Program with Php, Mysql database ,for my shopping cart? [closed]
I have my database as shown below.
Customers,
customer_id
user_id
first_name
last_name
customer_email
customer_telephone
I am developing a shopping cart and there are other database related to it.
...
0
votes
1answer
33 views
Editing a database entry via jquery
This query gives me a list from the database
while($res=mysql_fetch_array($temp)){
echo "<tr>";
echo "<td id='copyme'>".$res['name']."</td>";
echo ...
-1
votes
1answer
17 views
pdo(php-mysql) how to return columns names
I have a simple 2 columns table, and i want to get those columns names on my json result, for later jquery reading, making those columns as classes on my html tables.
I spent 2 days googling, reading ...
0
votes
1answer
34 views
jquery autocomplete not returning data
jquery autocomplete giving me a headache. The autocomple code is not returning data after typing into textbox . I can seem to find where the issue is in the code.
$().ready(function() {
...
0
votes
1answer
54 views
Google Maps filters
I am very frustrated with my one old month problem. This is my first web page and it's quite complicated (for me).
My problem is with AND and OR in filtering categories in google maps. All tutorials ...
1
vote
3answers
23 views
jQuery context menu filled with php content based on selection
When a user selects a word in a text on my website (PHP), and then right clicks, i want a jQuery context menu to come up, this can be done by using one of the already existing jQuery context menu ...
9
votes
3answers
138 views
+100
jQuery post request interrupted: Only half of post parameters arrive
I have a noticed a strange phenomenon in my LAMP environment.
Over the frontend I execute an AJAX post request with jQuery like this:
$.post('save.php', {data1: d1, data2: d2, [...], dataN: dN})
...